mina_sendStakeDelegation
This method is used by zkApp to call Auro Wallet stake delegation.
Params
type SendStakeDelegationArgs = {
// block producer address. require base58 address.
readonly to: string,
// option. Auro Wallet also provide advance option to change fee.
readonly fee?: number,
// option.
readonly memo?:string
}Result
type SendTransactionResult = {
// broadcast hash, you can query tx info by this hash.
hash: string
}
interface ProviderError extends Error {
message: string; // error message.
code: number; // error code.
data?: unknown; // error body.
}
Promise<SendTransactionResult | ProviderError>Errors
Example
Request
Result
Last updated