Uses of Interface
com.syntifi.near.api.rpc.model.transaction.Action
-
Packages that use Action Package Description com.syntifi.near.api.rpc.model.transaction com.syntifi.near.api.rpc.service -
-
Uses of Action in com.syntifi.near.api.rpc.model.transaction
Classes in com.syntifi.near.api.rpc.model.transaction that implement Action Modifier and Type Class Description class
AddKeyAction
AddKeyActionclass
CreateAccountAction
CreateAccountActionclass
DeleteAccountAction
DeleteAccountActionclass
DeleteKeyAction
DeleteKeyActionclass
DeployContractAction
DeployContractActionclass
FunctionCallAction
FunctionCallActionclass
StakeAction
StakeActionclass
TransferAction
TransferAction -
Uses of Action in com.syntifi.near.api.rpc.service
Method parameters in com.syntifi.near.api.rpc.service with type arguments of type Action Modifier and Type Method Description static java.lang.String
TransactionService. prepareTransactionForActionList(NearClient nearClient, java.lang.String signerId, java.lang.String receiverId, PublicKey signerPublicKey, PrivateKey signerPrivateKey, java.util.List<Action> actionList)
Prepares the transaction to send and automatically queries for the next noncestatic java.lang.String
TransactionService. prepareTransactionForActionList(NearClient nearClient, java.lang.String signerId, java.lang.String receiverId, PublicKey signerPublicKey, PrivateKey signerPrivateKey, java.util.List<Action> actionList, java.lang.Long nonce)
Prepares the transaction to send with a given noncestatic EncodedHash
TransferService. sendTransactionAsync(NearClient nearClient, java.lang.String signerId, java.lang.String receiverId, PublicKey signerPublicKey, PrivateKey signerPrivateKey, java.util.List<Action> actionList)
Sends a list ofAction
transaction waiting for result usingNearClient.sendTransactionAsync(String)
static TransactionAwait
TransferService. sendTransactionAwait(NearClient nearClient, java.lang.String signerId, java.lang.String receiverId, PublicKey signerPublicKey, PrivateKey signerPrivateKey, java.util.List<Action> actionList)
Sends a list ofAction
transaction waiting for result usingNearClient.sendTransactionAwait(String)
-