Uses of Class
com.syntifi.near.api.model.key.PrivateKey
-
Packages that use PrivateKey Package Description com.syntifi.near.api.model.key com.syntifi.near.api.service -
-
Uses of PrivateKey in com.syntifi.near.api.model.key
Methods in com.syntifi.near.api.model.key that return PrivateKey Modifier and Type Method Description static PrivateKey
PrivateKey. getPublicKeyFromJson(java.lang.String base58String)
-
Uses of PrivateKey in com.syntifi.near.api.service
Methods in com.syntifi.near.api.service with parameters of type PrivateKey Modifier and Type Method Description static EncodedHash
TransactionService. sendTransactionAsync(NearService nearService, 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 usingNearService.sendTransactionAsync(String)
static TransactionAwait
TransactionService. sendTransactionAwait(NearService nearService, 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 usingNearService.sendTransactionAwait(String)
static EncodedHash
TransactionService. sendTransferActionAsync(NearService nearService, java.lang.String signerId, java.lang.String receiverId, PublicKey signerPublicKey, PrivateKey signerPrivateKey, java.math.BigInteger amount)
Sends aTransferAction
transaction async usingNearService.sendTransactionAsync(String)
static TransactionAwait
TransactionService. sendTransferActionAwait(NearService nearService, java.lang.String signerId, java.lang.String receiverId, PublicKey signerPublicKey, PrivateKey signerPrivateKey, java.math.BigInteger amount)
Sends aTransferAction
transaction waiting for result usingNearService.sendTransactionAwait(String)
-