Variable actionCreatorsConst
actionCreators: { addKey: (publicKey: PublicKey, accessKey: AccessKey) => Action; createAccount: () => Action; deleteAccount: (beneficiaryId: string) => Action; deleteKey: (publicKey: PublicKey) => Action; deployContract: (code: Uint8Array) => Action; fullAccessKey: () => AccessKey; functionCall: ( methodName: string, args: object | Uint8Array, gas?: bigint, deposit?: bigint, stringify?: (args: any) => Buffer, jsContract?: boolean, ) => Action; functionCallAccessKey: ( receiverId: string, methodNames: string[], allowance?: bigint, ) => AccessKey; signedDelegate: ( __namedParameters: { delegateAction: DelegateAction; signature: Signature; }, ) => Action; stake: (stake?: bigint, publicKey: PublicKey) => Action; transfer: (deposit?: bigint) => Action;} = ... Type declaration
addKey: (publicKey: PublicKey, accessKey: AccessKey) => Action
createAccount: () => Action
deleteAccount: (beneficiaryId: string) => Action
deleteKey: (publicKey: PublicKey) => Action
deployContract: (code: Uint8Array) => Action
fullAccessKey: () => AccessKey
functionCall: (
methodName: string,
args: object | Uint8Array,
gas?: bigint,
deposit?: bigint,
stringify?: (args: any) => Buffer,
jsContract?: boolean,
) => Action
functionCallAccessKey: (receiverId: string, methodNames: string[], allowance?: bigint) => AccessKey
signedDelegate: (
__namedParameters: {
delegateAction: DelegateAction;
signature: Signature;
},
) => Action
stake: (stake?: bigint, publicKey: PublicKey) => Action
transfer: (deposit?: bigint) => Action