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

1001

User disconnect, need connect Auro Wallet.

Can not get connected account.

1002

user reject transaction.

20003

The parameters were invalid.

Please check address, fee.

23001

Origin dismatch.

Check origin safe.

Example

Request

Result

Last updated