| Modifier and Type | Method and Description |
|---|---|
static Asset |
BeowulfJ.beowulfToWd(Price price,
Asset beowulfAsset) |
Asset |
BeowulfJ.getBalance(AccountName accountName,
AssetInfo assetInfo) |
static Asset |
BeowulfJ.wdToBeowulf(Price price,
Asset wdAsset) |
| Modifier and Type | Method and Description |
|---|---|
static Asset |
BeowulfJ.beowulfToWd(Price price,
Asset beowulfAsset) |
AccountCreateOperation |
BeowulfJ.createAccount(AccountName creator,
Asset fee,
AccountName newAccount,
Authority owner,
String jsonMetadata) |
SmtCreateOperation |
BeowulfJ.smtCreate(AccountName controlAccount,
AccountName creator,
AssetInfo assetInfo,
Asset smtCreationFee,
long maxSupply) |
TransferOperation |
BeowulfJ.transfer(AccountName from,
AccountName to,
Asset amount,
Asset fee,
String memo)
Transfer currency from specified account to recipient.
|
static Asset |
BeowulfJ.wdToBeowulf(Price price,
Asset wdAsset) |
| Modifier and Type | Method and Description |
|---|---|
Asset |
Account.getBalance() |
Asset |
Account.getVestingBalance() |
Asset |
Account.getVestingShares() |
Asset |
Account.getVestingWithdrawRate() |
Asset |
Account.getWdBalance() |
| Modifier and Type | Method and Description |
|---|---|
List<Asset> |
Account.getTokenList() |
| Modifier and Type | Method and Description |
|---|---|
Asset |
AssetDeserializer.deserialize(com.fasterxml.jackson.core.JsonParser jasonParser,
com.fasterxml.jackson.databind.DeserializationContext deserializationContext) |
| Modifier and Type | Method and Description |
|---|---|
void |
AssetSerializer.serialize(Asset asset,
com.fasterxml.jackson.core.JsonGenerator jsonGenerator,
com.fasterxml.jackson.databind.SerializerProvider serializerProvider) |
| Modifier and Type | Method and Description |
|---|---|
Asset |
NetworkProperties.getAccountCreationFee() |
Asset |
NetworkProperties.getSmtCreationFee() |
Asset |
NetworkProperties.getTransactionFee() |
Asset |
VestingDelegationExpiration.getVestingShares() |
Asset |
VestingDelegation.getVestingShares() |
| Modifier and Type | Method and Description |
|---|---|
void |
VestingDelegationExpiration.setVestingShares(Asset vestingShares) |
void |
VestingDelegation.setVestingShares(Asset vestingShares) |
| Modifier and Type | Method and Description |
|---|---|
Asset |
Devnet.getAccountCreationFee() |
Asset |
Mainnet.getAccountCreationFee() |
Asset |
Testnet.getAccountCreationFee() |
Asset |
Devnet.getSmtCreationFee() |
Asset |
Mainnet.getSmtCreationFee() |
Asset |
Testnet.getSmtCreationFee() |
Asset |
Devnet.getTransactionFee() |
Asset |
Mainnet.getTransactionFee() |
Asset |
Testnet.getTransactionFee() |
| Modifier and Type | Method and Description |
|---|---|
Asset |
ExtendedSignedBlock.getBlockReward() |
| Modifier and Type | Method and Description |
|---|---|
void |
ExtendedSignedBlock.setBlockReward(Asset blockReward) |
| Modifier and Type | Method and Description |
|---|---|
static Asset |
CondenserApi.getBalance(CommunicationHandler communicationHandler,
String accountName,
AssetInfo assetInfo)
Broadcast a whole block.
|
| Modifier and Type | Method and Description |
|---|---|
Asset |
ExtendedAccount.getVestingBalance() |
| Modifier and Type | Method and Description |
|---|---|
void |
ExtendedAccount.setVestingBalance(Asset vestingBalance) |
| Modifier and Type | Method and Description |
|---|---|
Asset |
DynamicGlobalProperty.getCurrentSupply() |
Asset |
DynamicGlobalProperty.getCurrentWdSupply() |
Asset |
DynamicGlobalProperty.getPendingRewardedVestingBeowulf() |
Asset |
RewardFund.getRewardBalance() |
Asset |
DynamicGlobalProperty.getTotalRewardFundBeowulf() |
Asset |
DynamicGlobalProperty.getTotalVestingFundBeowulf() |
Asset |
DynamicGlobalProperty.getTotalVestingShares() |
Asset |
DynamicGlobalProperty.getVirtualSupply() |
| Modifier and Type | Method and Description |
|---|---|
static Asset |
Asset.createSmtAsset(BigDecimal amount,
String name)
Create a new asset object by providing all required fields.
|
Asset |
Price.getBase() |
Asset |
Price.getQuote() |
Asset |
Price.multiply(Asset asset)
Multiply this price instance with an
Asset instance. |
| Modifier and Type | Method and Description |
|---|---|
Asset |
Price.multiply(Asset asset)
Multiply this price instance with an
Asset instance. |
void |
Price.setBase(Asset base) |
void |
Price.setQuote(Asset quote) |
| Constructor and Description |
|---|
Price(Asset base,
Asset quote)
Create a new price object by providing a base and a
quote asset.
|
| Modifier and Type | Field and Description |
|---|---|
protected Asset |
AbstractAccountCreateOperation.fee |
| Modifier and Type | Method and Description |
|---|---|
Asset |
WithdrawVestingOperation.getFee() |
Asset |
AbstractAccountCreateOperation.getFee()
Get the fee the
creator has paid to create this new
account. |
Asset |
AccountSupernodeVoteOperation.getFee() |
Asset |
AccountUpdateOperation.getFee() |
Asset |
SupernodeUpdateOperation.getFee()
Get the fee that has been paid for this supernode update.
|
Asset |
SmtCreateOperation.getSmtCreationFee() |
Asset |
WithdrawVestingOperation.getVestingShares()
Get the amount that has been requested for withdrawing.
|
| Modifier and Type | Method and Description |
|---|---|
void |
TransferToVestingOperation.setAmount(Asset amount)
Set the
amount of that will be send. |
void |
TransferOperation.setAmount(Asset amount)
Set the
amount of that will be send. |
void |
WithdrawVestingOperation.setFee(Asset fee) |
void |
AbstractAccountCreateOperation.setFee(Asset fee)
Set the fee the
creator will pay to create a new
account. |
void |
AccountSupernodeVoteOperation.setFee(Asset fee) |
void |
AccountUpdateOperation.setFee(Asset fee) |
void |
SupernodeUpdateOperation.setFee(Asset fee)
Set the fee that should be paid for this supernode update.
|
void |
SmtCreateOperation.setSmtCreationFee(Asset smtCreationFee) |
void |
WithdrawVestingOperation.setVestingShares(Asset vestingShares)
Set the amount that should be requested for withdrawing.
|
| Constructor and Description |
|---|
AccountCreateOperation(AccountName creator,
Asset fee,
AccountName newAccountName,
Authority owner,
String jsonMetadata)
Create a new create account operation.
|
AccountSupernodeVoteOperation(AccountName account,
AccountName supernode,
Asset fee)
Like
AccountSupernodeVoteOperation.AccountSupernodeVoteOperation(AccountName, AccountName, boolean, Asset),
but the approve parameter is automatically set to true. |
AccountSupernodeVoteOperation(AccountName account,
AccountName supernode,
boolean approve,
Asset fee)
Create a new account supernode vote operation.
|
AccountUpdateOperation(AccountName account,
Authority owner,
String jsonMetadata,
Asset fee)
Create a new create account update operation.Use this operation to
update the keys of an existing account.
|
SmtCreateOperation(AccountName controlAccount,
AccountName creator,
AssetInfo symbol,
Asset smtCreationFee,
org.joou.UInteger precision,
List<FutureExtensions> extensions,
long maxSupply) |
SupernodeUpdateOperation(AccountName owner,
PublicKey blockSigningKey,
Asset fee)
Create a new supernode update operation.
|
TransferOperation(AccountName from,
AccountName to,
Asset amount,
Asset fee,
String memo)
Create a new transfer operation.Use this operation to transfer an asset
from one account to another.
|
TransferToVestingOperation(AccountName from,
AccountName to,
Asset amount,
Asset fee)
Create a new transfer to vesting operation to transfer Beowulf Power to
other users.
|
TransferToVestingOperation(AccountName from,
Asset amount,
Asset fee)
Like
TransferToVestingOperation.TransferToVestingOperation(AccountName, AccountName, Asset, Asset), but
will transform the asset from the from account
to the from account. |
WithdrawVestingOperation(AccountName account,
Asset vestingShares,
Asset fee)
Create a new withdraw vesting operation.
|
| Modifier and Type | Method and Description |
|---|---|
Asset |
FillVestingWithdrawOperation.getDeposited() |
Asset |
ProducerRewardOperation.getVestingShares()
Get the amount of M the
producer got. |
Asset |
FillVestingWithdrawOperation.getWithdrawn() |
Copyright © 2019. All rights reserved.