-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add signature verification endpoints #209
base: main
Are you sure you want to change the base?
Conversation
fd96ce4
to
4b6ae7a
Compare
55159ac
to
17646bb
Compare
…ith-inspect feat: update access control methods to include 'admin_' prefix
…gnatureVerificationCanisterInitData
…onCanisterInitData
…ed in EvmCanisterClient
@@ -844,4 +844,14 @@ impl<C: CanisterClient> EvmCanisterClient<C> { | |||
) -> CanisterClientResult<Result<()>> { | |||
self.client.update("revert_to_block", (args,)).await | |||
} | |||
|
|||
/// Receive a batch of Transactions and append them to the blockchain. | |||
pub async fn receive_transactions_unchecked( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is to send, not to receive
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is to recieve
transactions tho
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, the client sends
transactions, for example, the Ethereum endpoint to send a TX is indeed called SENDRawTransaction. If you don't like send
, you can find a synonym like push
or add
but not receive
Issue ticket
Issue ticket link: <>
Checklist before requesting a review
Code conventions
Security
Testing
canister_call!
macro