Uses of Class
com.syntifi.near.api.rpc.model.transaction.TransactionAwait
-
-
Uses of TransactionAwait in com.syntifi.near.api.rpc
Methods in com.syntifi.near.api.rpc that return TransactionAwait Modifier and Type Method Description TransactionAwait
NearClient. sendTransactionAwait(java.lang.String base64EncodedSignedTransaction)
Sends a transaction and waits until transaction is fully complete. -
Uses of TransactionAwait in com.syntifi.near.api.rpc.service
Methods in com.syntifi.near.api.rpc.service that return TransactionAwait Modifier and Type Method Description static TransactionAwait
AccountService. createNamedAccount(Network network, java.lang.String newAccountId, PublicKey newAccountPublicKey, java.math.BigInteger amountToNewAccount, java.lang.String creatorAccountId, PublicKey creatorPublicKey, PrivateKey creatorPrivateKey)
Sends aTransferAction
transaction calling a contract to create_account and waits for result usingNearClient.sendTransactionAwait(String)
static TransactionAwait
AccountService. createNamedAccount(NearClient nearClient, java.lang.String mainDomain, java.lang.String newAccountId, PublicKey newAccountPublicKey, java.math.BigInteger amountToNewAccount, java.lang.String creatorAccountId, PublicKey creatorPublicKey, PrivateKey creatorPrivateKey)
Sends aTransferAction
transaction calling a contract to create_account and waits for result usingNearClient.sendTransactionAwait(String)
static TransactionAwait
AccountService. createSubAccount(NearClient nearClient, java.lang.String newAccountId, java.math.BigInteger amountToNewAccount, java.lang.String creatorAccountId, PublicKey creatorPublicKey, PrivateKey creatorPrivateKey)
Sends aTransferAction
transaction with the needed actions to generate a sub account and waits for result usingNearClient.sendTransactionAwait(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)
static TransactionAwait
TransferService. sendTransferActionAwait(NearClient nearClient, java.lang.String signerId, java.lang.String receiverId, PublicKey signerPublicKey, PrivateKey signerPrivateKey, java.math.BigInteger amount)
Sends aTransferAction
transaction waiting for result usingNearClient.sendTransactionAwait(String)
-
Uses of TransactionAwait in com.syntifi.near.api.rpc.service.contract.common
Methods in com.syntifi.near.api.rpc.service.contract.common that return TransactionAwait Modifier and Type Method Description TransactionAwait
ContractMethodProxy. invoke(NearClient nearClient, java.lang.String contractAccountId, java.lang.String methodName, ContractMethodType methodType, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey, com.fasterxml.jackson.databind.node.ObjectNode arguments, java.math.BigInteger deposit)
Proxy invoke the contracts call methods via signed transactionsTransactionAwait
ContractMethodProxyClient. invoke(NearClient nearClient, java.lang.String contractAccountId, java.lang.String methodName, ContractMethodType methodType, java.lang.String accountId, PublicKey accountPublicKey, PrivateKey accountPrivateKey, com.fasterxml.jackson.databind.node.ObjectNode arguments, java.math.BigInteger deposit)
-
Uses of TransactionAwait in com.syntifi.near.api.rpc.service.contract.ft
Methods in com.syntifi.near.api.rpc.service.contract.ft that return TransactionAwait Modifier and Type Method Description TransactionAwait
FTService. callTransfer(NearClient nearClient, java.lang.String tokenId, java.lang.String amount, java.lang.String receiverId, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to transfer ftTransactionAwait
FTService. callTransfer(NearClient nearClient, java.lang.String tokenId, java.lang.String amount, java.lang.String receiverId, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey, java.lang.String memo)
Synchronous contractCall to transfer ftTransactionAwait
FTService. callTransferCall(NearClient nearClient, java.lang.String tokenId, java.lang.String amount, java.lang.String receiverId, java.lang.String accountId, java.lang.String msg, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to transfer_call ftTransactionAwait
FTService. callTransferCall(NearClient nearClient, java.lang.String tokenId, java.lang.String amount, java.lang.String receiverId, java.lang.String accountId, java.lang.String msg, PublicKey publicKey, PrivateKey privateKey, java.lang.String memo)
Synchronous contractCall to transfer_call ft -
Uses of TransactionAwait in com.syntifi.near.api.rpc.service.contract.nft
Methods in com.syntifi.near.api.rpc.service.contract.nft that return TransactionAwait Modifier and Type Method Description TransactionAwait
NFTService. callTransfer(NearClient nearClient, java.lang.String contractAccountId, java.lang.String receiverAccountId, java.lang.String tokenId, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey, java.math.BigInteger deposit)
Synchronous contractCall to transfer nft -
Uses of TransactionAwait in com.syntifi.near.api.rpc.service.contract.staking
Methods in com.syntifi.near.api.rpc.service.contract.staking that return TransactionAwait Modifier and Type Method Description TransactionAwait
StakingService. callClaim(NearClient nearClient, java.lang.String contractAccountId, java.math.BigInteger amount, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to claim rewards from contractAccountIdTransactionAwait
StakingService. callDeposit(NearClient nearClient, java.lang.String contractAccountId, java.math.BigInteger amount, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to deposit an amount to the contractAccountIdTransactionAwait
StakingService. callDepositAndStake(NearClient nearClient, java.lang.String contractAccountId, java.math.BigInteger amount, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to deposit and stake an amount to the contractAccountIdTransactionAwait
StakingService. callPing(NearClient nearClient, java.lang.String contractAccountId, java.math.BigInteger amount, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to ping contractAccountIdTransactionAwait
StakingService. callStake(NearClient nearClient, java.lang.String contractAccountId, java.math.BigInteger amount, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to stake an amount to the contractAccountIdTransactionAwait
StakingService. callStakeAll(NearClient nearClient, java.lang.String contractAccountId, java.math.BigInteger amount, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to stake all available balance in the contractAccountIdTransactionAwait
StakingService. callUnstake(NearClient nearClient, java.lang.String contractAccountId, java.lang.String amount, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to unstake an amount to the contractAccountIdTransactionAwait
StakingService. callWithdraw(NearClient nearClient, java.lang.String contractAccountId, java.math.BigInteger amount, java.lang.String accountId, PublicKey publicKey, PrivateKey privateKey)
Synchronous contractCall to withdraw an amount to the contractAccountId
-