Uses of Class
com.syntifi.near.api.common.helper.Network
-
Packages that use Network Package Description com.syntifi.near.api.common.helper com.syntifi.near.api.indexer com.syntifi.near.api.rpc com.syntifi.near.api.rpc.service -
-
Uses of Network in com.syntifi.near.api.common.helper
Methods in com.syntifi.near.api.common.helper 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. -
Uses of Network in com.syntifi.near.api.indexer
Methods in com.syntifi.near.api.indexer with parameters of type Network Modifier and Type Method Description static NearIndexerClient
NearIndexerClient. usingNetwork(Network network)
NearIndexerService builder -
Uses of Network in com.syntifi.near.api.rpc
Methods in com.syntifi.near.api.rpc with parameters of type Network Modifier and Type Method Description static NearClient
NearClient. usingNetwork(Network network)
NearService builder -
Uses of Network in com.syntifi.near.api.rpc.service
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 usingNearClient.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 usingNearClient.sendTransactionAsync(String)
with the needed actions to generate a named account and waits for result usingNearClient.sendTransactionAwait(String)
-