Package | Description |
---|---|
com.zbsnetwork.zbsjava | |
com.zbsnetwork.zbsjava.matcher | |
com.zbsnetwork.zbsjava.transactions |
Modifier and Type | Method and Description |
---|---|
static PrivateKeyAccount |
PrivateKeyAccount.fromPrivateKey(String privateKey,
byte chainId) |
static PrivateKeyAccount |
PrivateKeyAccount.fromSeed(String seed,
int nonce,
byte chainId) |
Modifier and Type | Method and Description |
---|---|
String |
Node.alias(PrivateKeyAccount account,
byte chainId,
String alias,
long fee) |
String |
Node.burnAsset(PrivateKeyAccount account,
byte chainId,
String assetId,
long amount,
long fee) |
String |
Node.cancelLease(PrivateKeyAccount account,
byte chainId,
String txId,
long fee) |
String |
Node.cancelOrder(PrivateKeyAccount account,
AssetPair assetPair,
String orderId) |
Order |
Node.createOrder(PrivateKeyAccount account,
String matcherKey,
AssetPair assetPair,
Order.Type orderType,
long price,
long amount,
long expiration,
long matcherFee) |
String |
Node.data(PrivateKeyAccount from,
Collection<DataEntry<?>> data,
long fee) |
String |
Node.deleteOrder(PrivateKeyAccount account,
AssetPair assetPair,
String orderId) |
List<Order> |
Node.getOrders(PrivateKeyAccount account) |
List<Order> |
Node.getOrders(PrivateKeyAccount account,
AssetPair market) |
String |
Node.issueAsset(PrivateKeyAccount account,
byte chainId,
String name,
String description,
long quantity,
byte decimals,
boolean reissuable,
String script,
long fee) |
String |
Node.lease(PrivateKeyAccount from,
String recipient,
long amount,
long fee) |
static AliasTransaction |
Transactions.makeAliasTx(PrivateKeyAccount sender,
String alias,
byte chainId,
long fee) |
static AliasTransaction |
Transactions.makeAliasTx(PrivateKeyAccount sender,
String alias,
byte chainId,
long fee,
long timestamp) |
static BurnTransactionV2 |
Transactions.makeBurnTx(PrivateKeyAccount sender,
byte chainId,
String assetId,
long amount,
long fee) |
static BurnTransactionV2 |
Transactions.makeBurnTx(PrivateKeyAccount sender,
byte chainId,
String assetId,
long amount,
long fee,
long timestamp) |
static DataTransaction |
Transactions.makeDataTx(PrivateKeyAccount sender,
Collection<DataEntry<?>> data,
long fee) |
static DataTransaction |
Transactions.makeDataTx(PrivateKeyAccount sender,
Collection<DataEntry<?>> data,
long fee,
long timestamp) |
static DeleteOrder |
Transactions.makeDeleteOrder(PrivateKeyAccount account,
AssetPair assetPair,
String orderId) |
static IssueTransactionV2 |
Transactions.makeIssueTx(PrivateKeyAccount sender,
byte chainId,
String name,
String description,
long quantity,
byte decimals,
boolean reissuable,
String script,
long fee) |
static IssueTransactionV2 |
Transactions.makeIssueTx(PrivateKeyAccount sender,
byte chainId,
String name,
String description,
long quantity,
byte decimals,
boolean reissuable,
String script,
long fee,
long timestamp) |
static LeaseCancelTransaction |
Transactions.makeLeaseCancelTx(PrivateKeyAccount sender,
byte chainId,
String leaseId,
long fee) |
static LeaseCancelTransaction |
Transactions.makeLeaseCancelTx(PrivateKeyAccount sender,
byte chainId,
String leaseId,
long fee,
long timestamp) |
static LeaseTransaction |
Transactions.makeLeaseTx(PrivateKeyAccount sender,
String recipient,
long amount,
long fee) |
static LeaseTransactionV2 |
Transactions.makeLeaseTx(PrivateKeyAccount sender,
String recipient,
long amount,
long fee,
long timestamp) |
static MassTransferTransaction |
Transactions.makeMassTransferTx(PrivateKeyAccount sender,
String assetId,
Collection<Transfer> transfers,
long fee,
String attachment) |
static MassTransferTransaction |
Transactions.makeMassTransferTx(PrivateKeyAccount sender,
String assetId,
Collection<Transfer> transfers,
long fee,
String attachment,
long timestamp) |
static CancelOrder |
Transactions.makeOrderCancelTx(PrivateKeyAccount account,
AssetPair assetPair,
String orderId) |
static Order |
Transactions.makeOrderTx(PrivateKeyAccount account,
String matcherKey,
Order.Type orderType,
AssetPair assetPair,
long price,
long amount,
long expiration,
long matcherFee) |
static Order |
Transactions.makeOrderTx(PrivateKeyAccount account,
String matcherKey,
Order.Type orderType,
AssetPair assetPair,
long price,
long amount,
long expiration,
long matcherFee,
long timestamp) |
static ReissueTransactionV2 |
Transactions.makeReissueTx(PrivateKeyAccount sender,
byte chainId,
String assetId,
long quantity,
boolean reissuable,
long fee) |
static ReissueTransactionV2 |
Transactions.makeReissueTx(PrivateKeyAccount sender,
byte chainId,
String assetId,
long quantity,
boolean reissuable,
long fee,
long timestamp) |
static SetScriptTransaction |
Transactions.makeScriptTx(PrivateKeyAccount sender,
String script,
byte chainId,
long fee) |
static SetScriptTransaction |
Transactions.makeScriptTx(PrivateKeyAccount sender,
String script,
byte chainId,
long fee,
long timestamp)
Creates a signed SetScript object.
|
static SponsorTransaction |
Transactions.makeSponsorTx(PrivateKeyAccount sender,
String assetId,
long minAssetFee,
long fee) |
static SponsorTransaction |
Transactions.makeSponsorTx(PrivateKeyAccount sender,
String assetId,
long minAssetFee,
long fee,
long timestamp) |
static TransferTransactionV2 |
Transactions.makeTransferTx(PrivateKeyAccount sender,
String recipient,
long amount,
String assetId,
long fee,
String feeAssetId,
String attachment) |
static TransferTransactionV2 |
Transactions.makeTransferTx(PrivateKeyAccount sender,
String recipient,
long amount,
String assetId,
long fee,
String feeAssetId,
String attachment,
long timestamp) |
String |
Node.massTransfer(PrivateKeyAccount from,
String assetId,
Collection<Transfer> transfers,
long fee,
String message) |
String |
Node.reissueAsset(PrivateKeyAccount account,
byte chainId,
String assetId,
long quantity,
boolean reissuable,
long fee) |
String |
Node.setScript(PrivateKeyAccount from,
String script,
byte chainId,
long fee)
Sets a validating script for an account.
|
static String |
ByteUtils.sign(PrivateKeyAccount account,
ByteBuffer buffer) |
String |
Node.sponsorAsset(PrivateKeyAccount account,
String assetId,
long minAssetFee,
long fee) |
String |
Node.transfer(PrivateKeyAccount from,
String recipient,
long amount,
long fee,
String message) |
String |
Node.transfer(PrivateKeyAccount from,
String assetId,
String recipient,
long amount,
long fee,
String feeAssetId,
String message) |
Constructor and Description |
---|
CancelOrder(PrivateKeyAccount sender,
AssetPair assetPair,
long timestamp) |
CancelOrder(PrivateKeyAccount sender,
AssetPair assetPair,
String orderId) |
DeleteOrder(PrivateKeyAccount sender,
AssetPair assetPair,
long timestamp) |
DeleteOrder(PrivateKeyAccount sender,
AssetPair assetPair,
String orderId) |
Order(Order.Type orderType,
AssetPair assetPair,
long amount,
long price,
long timestamp,
long expiration,
long matcherFee,
PrivateKeyAccount senderPublicKey,
PublicKeyAccount matcherKey) |
Constructor and Description |
---|
AliasTransactionV1(PrivateKeyAccount senderPublicKey,
Alias alias,
long fee,
long timestamp) |
AliasTransactionV2(PrivateKeyAccount senderPublicKey,
Alias alias,
long fee,
long timestamp) |
BurnTransactionV1(PrivateKeyAccount senderPublicKey,
String assetId,
long amount,
long fee,
long timestamp) |
BurnTransactionV2(PrivateKeyAccount senderPublicKey,
byte chainId,
String assetId,
long amount,
long fee,
long timestamp) |
DataTransaction(PrivateKeyAccount senderPublicKey,
Collection<DataEntry<?>> data,
long fee,
long timestamp) |
ExchangeTransaction(PrivateKeyAccount senderPublicKey,
long amount,
long price,
Order buyOrder,
Order sellOrder,
long buyMatcherFee,
long sellMatcherFee,
long fee,
long timestamp) |
IssueTransactionV1(PrivateKeyAccount senderPublicKey,
String name,
String description,
long quantity,
byte decimals,
boolean reissuable,
long fee,
long timestamp) |
IssueTransactionV2(PrivateKeyAccount senderPublicKey,
byte chainId,
String name,
String description,
long quantity,
byte decimals,
boolean reissuable,
String script,
long fee,
long timestamp) |
LeaseCancelTransactionV1(PrivateKeyAccount senderPublicKey,
String leaseId,
long fee,
long timestamp) |
LeaseCancelTransactionV2(PrivateKeyAccount senderPublicKey,
byte chainId,
String leaseId,
long fee,
long timestamp) |
LeaseTransactionV1(PrivateKeyAccount senderPublicKey,
String recipient,
long amount,
long fee,
long timestamp) |
LeaseTransactionV2(PrivateKeyAccount senderPublicKey,
String recipient,
long amount,
long fee,
long timestamp) |
MassTransferTransaction(PrivateKeyAccount senderPublicKey,
String assetId,
Collection<Transfer> transfers,
long fee,
ByteString attachment,
long timestamp) |
ReissueTransactionV1(PrivateKeyAccount senderPublicKey,
String assetId,
long quantity,
boolean reissuable,
long fee,
long timestamp) |
ReissueTransactionV2(PrivateKeyAccount senderPublicKey,
byte chainId,
String assetId,
long quantity,
boolean reissuable,
long fee,
long timestamp) |
SetScriptTransaction(PrivateKeyAccount senderPublicKey,
String script,
byte chainId,
long fee,
long timestamp) |
SponsorTransaction(PrivateKeyAccount senderPublicKey,
String assetId,
long minAssetFee,
long fee,
long timestamp) |
TransferTransactionV1(PrivateKeyAccount senderPublicKey,
String recipient,
long amount,
String assetId,
long fee,
String feeAssetId,
ByteString attachment,
long timestamp) |
TransferTransactionV2(PrivateKeyAccount senderPublicKey,
String recipient,
long amount,
String assetId,
long fee,
String feeAssetId,
ByteString attachment,
long timestamp) |
Copyright © 2019. All rights reserved.