Uses of Class
com.syntifi.near.api.rpc.service.Network
-
Packages that use Network Package Description com.syntifi.near.api.rpc.service -
-
Uses of Network in com.syntifi.near.api.rpc.service
Methods in com.syntifi.near.api.rpc.service that return Network Modifier and Type Method Description static Network
Network. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Network[]
Network. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.syntifi.near.api.rpc.service with parameters of type Network 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 usingNearService.sendTransactionAwait(String)
static EncodedHash
AccountService. createNamedAccountAsync(Network network, java.lang.String newAccountId, PublicKey newAccountPublicKey, java.math.BigInteger amountToNewAccount, java.lang.String creatorAccountId, PublicKey creatorPublicKey, PrivateKey creatorPrivateKey)
Sends aTransferAction
transaction async usingNearService.sendTransactionAsync(String)
with the needed actions to generate a named account and waits for result usingNearService.sendTransactionAwait(String)
static NearService
NearServiceHelper. getService(Network network)
static NearService
NearService. usingNetwork(Network network)
NearService builder
-