Variable actionCreatorsConst
action Creators : { addKey : ( ( publicKey ,
accessKey ) => Action ) ; createAccount : ( ( ) => Action ) ; deleteAccount : ( ( beneficiaryId ) => Action ) ; deleteKey : ( ( publicKey ) => Action ) ; deployContract : ( ( code ) => Action ) ; fullAccessKey : ( ( ) => AccessKey ) ; functionCall : ( ( methodName ,
args ,
gas ? ,
deposit ? ,
stringify ? ,
jsContract ? ) => Action ) ; functionCallAccessKey : ( ( receiverId ,
methodNames ,
allowance ? ) => AccessKey ) ; signedDelegate : ( ( __namedParameters ) => Action ) ; stake : ( ( stake ? ,
publicKey ) => Action ) ; transfer : ( ( deposit ? ) => Action ) ; } = ... Type declaration add Key : ( ( publicKey , accessKey ) => Action ) ( publicKey , accessKey ) : Action create Account : ( ( ) => Action ) delete Account : ( ( beneficiaryId ) => Action ) delete Key : ( ( publicKey ) => Action ) deploy Contract : ( ( code ) => Action ) full Access Key : ( ( ) => AccessKey ) function Call : ( ( methodName , args , gas ? , deposit ? , stringify ? , jsContract ? ) => Action ) ( methodName , args , gas ? , deposit ? , stringify ? , jsContract ? ) : Action Parameters methodName : string args : object | Uint8Array gas : BN = ... deposit : BN = ... stringify : ( ( args ) => Buffer ) = stringifyJsonOrBytes ( args ) : Buffer Returns Buffer jsContract : boolean = false function Call Access Key : ( ( receiverId , methodNames , allowance ? ) => AccessKey ) ( receiverId , methodNames , allowance ? ) : AccessKey Parameters receiverId : string methodNames : string [] Optional
allowance : BN signed Delegate : ( ( __namedParameters ) => Action ) stake : ( ( stake ? , publicKey ) => Action ) ( stake ? , publicKey ) : Action Parameters stake : BN = ... publicKey : PublicKey transfer : ( ( deposit ? ) => Action )
Constructs Action instance representing contract method call.