Skip navigation links
A B C D E G H I K L M N O P R S T U V 

A

AbiEosSerializationObject - Class in one.block.eosiojava.models
The request/response object to pass to Serialization Provider for generic serialization/deserialization
AbiEosSerializationObject(String, String, String, String) - Constructor for class one.block.eosiojava.models.AbiEosSerializationObject
Initialize AbiEosSerializationObject
AbiProviderError - Exception in one.block.eosiojava.error.abiProvider
Error class is used when there is an exception while attempting to call any method in an AbiProvider implementation.
AbiProviderError() - Constructor for exception one.block.eosiojava.error.abiProvider.AbiProviderError
 
AbiProviderError(String) - Constructor for exception one.block.eosiojava.error.abiProvider.AbiProviderError
 
AbiProviderError(String, Exception) - Constructor for exception one.block.eosiojava.error.abiProvider.AbiProviderError
 
AbiProviderError(Exception) - Constructor for exception one.block.eosiojava.error.abiProvider.AbiProviderError
 
ABIProviderImpl - Class in one.block.eosiojava.implementations
Default ABI Provider implementation, providing in memory caching of previously fetched ABI's as well as fetching of ABI's using the provided RPC provider.
ABIProviderImpl(IRPCProvider, ISerializationProvider) - Constructor for class one.block.eosiojava.implementations.ABIProviderImpl
Initialize a new ABI Provider, passing the necessary RPC provider to fetch ABI's if they are not found in the cache.
Action - Class in one.block.eosiojava.models.rpcProvider
The action to execute on the contract.
Action(String, String, List<Authorization>, String) - Constructor for class one.block.eosiojava.models.rpcProvider.Action
Instantiates a new action.
AlgorithmEmployed - Enum in one.block.eosiojava.enums
Enum of supported algorithms which are employed in eosio-java library
asJsonString() - Method in exception one.block.eosiojava.error.EosioError
Construct a JSON formatted string describing the error code and reason.
Authorization - Class in one.block.eosiojava.models.rpcProvider
The Authorization of Action
Authorization(String, String) - Constructor for class one.block.eosiojava.models.rpcProvider.Authorization
Instantiates a new Authorization.

B

BACKEND_DATE_PATTERN - Static variable in class one.block.eosiojava.utilities.DateFormatter
Blockchain pattern for SimpleDateFormat
BACKEND_DATE_PATTERN_WITH_TIMEZONE - Static variable in class one.block.eosiojava.utilities.DateFormatter
Blockchain pattern for SimpleDateFormat.
BACKEND_DATE_TIME_ZONE - Static variable in class one.block.eosiojava.utilities.DateFormatter
Blockchain timezone/time standard for SimpleDateFormat
BASE58_DECODING_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
An error occurred while Base58 decoding the EOS key.
BASE58_EMPTY_CHECKSUM_OR_KEY - Static variable in class one.block.eosiojava.error.ErrorConstants
Input key, checksum or key type were empty and are needed for validation.
BASE58_EMPTY_CHECKSUM_OR_KEY_OR_KEY_TYPE - Static variable in class one.block.eosiojava.error.ErrorConstants
Input key, checksum or key type were empty and are needed for validation.
BASE58_EMPTY_KEY - Static variable in class one.block.eosiojava.error.ErrorConstants
The key provided for Base58 decoding was empty.
BASE58_ENCODING_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
The object could not be Base58 encoded.
BASE58_INVALID_CHECKSUM - Static variable in class one.block.eosiojava.error.ErrorConstants
Input key has invalid checksum.
Base58ManipulationError - Exception in one.block.eosiojava.error.utilities
Error is thrown for exceptions that occur during Base58 encoding or decoding operations.
Base58ManipulationError() - Constructor for exception one.block.eosiojava.error.utilities.Base58ManipulationError
 
Base58ManipulationError(String) - Constructor for exception one.block.eosiojava.error.utilities.Base58ManipulationError
 
Base58ManipulationError(String, Exception) - Constructor for exception one.block.eosiojava.error.utilities.Base58ManipulationError
 
Base58ManipulationError(Exception) - Constructor for exception one.block.eosiojava.error.utilities.Base58ManipulationError
 
BinaryAbi - Class in one.block.eosiojava.models.signatureProvider
This class holds data of the ABI and its contract account name that is passed to a Signature Provider inside EosioTransactionSignatureRequest
BinaryAbi(String, String) - Constructor for class one.block.eosiojava.models.signatureProvider.BinaryAbi
Instantiates a new Binary abi.
broadcast() - Method in class one.block.eosiojava.session.TransactionProcessor
Broadcast transaction to blockchain.
ByteFormatter - Class in one.block.eosiojava.utilities
This class provides methods for transforming and formatting byte data to and from different formats in use on the blockchain.
ByteFormatter(byte[]) - Constructor for class one.block.eosiojava.utilities.ByteFormatter
 

C

CALCULATED_HASH_NOT_EQUAL_RETURNED - Static variable in class one.block.eosiojava.error.ErrorConstants
 
CHECKSUM_GENERATION_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Checksum generation failed.
clone(T) - Static method in class one.block.eosiojava.utilities.Utils
Clone an object
convertBackendTimeToMilli(String) - Static method in class one.block.eosiojava.utilities.DateFormatter
Converting backend time to millisecond.
convertDERSignatureToEOSFormat(byte[], byte[], String) - Static method in class one.block.eosiojava.utilities.EOSFormatter
This method converts a signature to a EOS compliant form.
convertEOSPrivateKeyToPEMFormat(String) - Static method in class one.block.eosiojava.utilities.EOSFormatter
This method converts an EOS formatted private key to the PEM format.
convertEOSPublicKeyToPEMFormat(String) - Static method in class one.block.eosiojava.utilities.EOSFormatter
This method converts an EOS formatted public key to the PEM format.
convertMilliSecondToBackendTimeString(long) - Static method in class one.block.eosiojava.utilities.DateFormatter
Convert milliseconds to time string format used on blockchain.
convertPEMFormattedPrivateKeyToEOSFormat(String) - Static method in class one.block.eosiojava.utilities.EOSFormatter
This method converts a PEM formatted private key to the EOS format.
convertPEMFormattedPublicKeyToEOSFormat(String, boolean) - Static method in class one.block.eosiojava.utilities.EOSFormatter
This method converts a PEM formatted public key to the EOS format.
convertRawRandSofSignatureToEOSFormat(String, String, byte[], String) - Static method in class one.block.eosiojava.utilities.EOSFormatter
This method converts a signature to a EOS compliant form.
COULD_NOT_RECOVER_PUBLIC_KEY_FROM_SIG - Static variable in class one.block.eosiojava.error.ErrorConstants
A public key could not be recovered from the signature.
createFromBase64(String) - Static method in class one.block.eosiojava.utilities.ByteFormatter
Create and initialize a ByteFormatter from a Base64 encoded string.
createFromHex(String) - Static method in class one.block.eosiojava.utilities.ByteFormatter
Create and initialize a ByteFormatter from a hex encoded string.

D

DateFormatter - Class in one.block.eosiojava.utilities
This class provides utility methods to handle the formatting of dates and times to supported patterns.
decodePublicKey(String, String) - Static method in class one.block.eosiojava.utilities.EOSFormatter
Base58 decodes a public key and validates checksum.
DER_TO_PEM_CONVERSION - Static variable in class one.block.eosiojava.error.ErrorConstants
Error converting DER encoded key to PEM format.
DerToPemConversionError - Exception in one.block.eosiojava.error.utilities
Error is thrown for exceptions involving conversions of keys or signatures from DER encoded format to PEM.
DerToPemConversionError() - Constructor for exception one.block.eosiojava.error.utilities.DerToPemConversionError
 
DerToPemConversionError(String) - Constructor for exception one.block.eosiojava.error.utilities.DerToPemConversionError
 
DerToPemConversionError(String, Exception) - Constructor for exception one.block.eosiojava.error.utilities.DerToPemConversionError
 
DerToPemConversionError(Exception) - Constructor for exception one.block.eosiojava.error.utilities.DerToPemConversionError
 
deserialize(AbiEosSerializationObject) - Method in interface one.block.eosiojava.interfaces.ISerializationProvider
Perform a deserialization process to convert a hex string to a JSON string given the parameters provided in the input deserilizationObject.
deserializeAbi(String) - Method in interface one.block.eosiojava.interfaces.ISerializationProvider
Convenience method to transform an ABI hex string to a JSON string.
DeserializeAbiError - Exception in one.block.eosiojava.error.serializationProvider
Error class is used when there is an exception while attempting to call deserializeAbi() of Serialization Provider
DeserializeAbiError() - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeAbiError
 
DeserializeAbiError(String) - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeAbiError
 
DeserializeAbiError(String, Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeAbiError
 
DeserializeAbiError(Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeAbiError
 
DeserializeError - Exception in one.block.eosiojava.error.serializationProvider
Error class is used when there is an exception while attempting to call deserialize() of Serialization Provider
DeserializeError() - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeError
 
DeserializeError(String) - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeError
 
DeserializeError(String, Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeError
 
DeserializeError(Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeError
 
deserializeTransaction(String) - Method in interface one.block.eosiojava.interfaces.ISerializationProvider
Convenience method to transform a transaction hex string to a JSON string.
DeserializeTransactionError - Exception in one.block.eosiojava.error.serializationProvider
Error class is used when there is an exception while attempting to call deserializeTransaction() of Serialization Provider
DeserializeTransactionError() - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeTransactionError
 
DeserializeTransactionError(String) - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeTransactionError
 
DeserializeTransactionError(String, Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeTransactionError
 
DeserializeTransactionError(Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.DeserializeTransactionError
 
Detail - Class in one.block.eosiojava.models.rpcProvider.response
The Error Detail of RPCResponseError
Detail() - Constructor for class one.block.eosiojava.models.rpcProvider.response.Detail
 

E

EMPTY_INPUT_EXTRACT_SERIALIZIED_TRANS_FROM_SIGNABLE - Static variable in class one.block.eosiojava.error.ErrorConstants
The signable transaction parameter was empty.
EMPTY_INPUT_PREPARE_SERIALIZIED_TRANS_FOR_SIGNING - Static variable in class one.block.eosiojava.error.ErrorConstants
Chain id or serialized transaction parameter was empty.
encodePrivateKey(byte[], AlgorithmEmployed) - Static method in class one.block.eosiojava.utilities.EOSFormatter
Base58 encodes a private key after calculating and appending the checksum.
encodePublicKey(byte[], AlgorithmEmployed, boolean) - Static method in class one.block.eosiojava.utilities.EOSFormatter
Encoding PEM public key to EOS format.
EOSFormatter - Class in one.block.eosiojava.utilities
This class provides a number of helper methods that can be used to convert certain objects to and from formats that are germane to EOS blockchain transactions and the PEM (Privacy Enhanced Mail) format for those objects.
EOSFormatter() - Constructor for class one.block.eosiojava.utilities.EOSFormatter
 
EOSFormatterError - Exception in one.block.eosiojava.error.utilities
Error class is used when there is an exception while attempting to call any method of EOSFormatter
EOSFormatterError() - Constructor for exception one.block.eosiojava.error.utilities.EOSFormatterError
 
EOSFormatterError(String) - Constructor for exception one.block.eosiojava.error.utilities.EOSFormatterError
 
EOSFormatterError(String, Exception) - Constructor for exception one.block.eosiojava.error.utilities.EOSFormatterError
 
EOSFormatterError(Exception) - Constructor for exception one.block.eosiojava.error.utilities.EOSFormatterError
 
EosFormatterSignatureIsNotCanonicalError - Exception in one.block.eosiojava.error.utilities
Error class is used when there is an exception while attempting to convert a signature to EOS format and the signature is not canonical.
EosFormatterSignatureIsNotCanonicalError() - Constructor for exception one.block.eosiojava.error.utilities.EosFormatterSignatureIsNotCanonicalError
 
EosFormatterSignatureIsNotCanonicalError(String) - Constructor for exception one.block.eosiojava.error.utilities.EosFormatterSignatureIsNotCanonicalError
 
EosFormatterSignatureIsNotCanonicalError(String, Exception) - Constructor for exception one.block.eosiojava.error.utilities.EosFormatterSignatureIsNotCanonicalError
 
EosFormatterSignatureIsNotCanonicalError(Exception) - Constructor for exception one.block.eosiojava.error.utilities.EosFormatterSignatureIsNotCanonicalError
 
EosioEndPoint - Class in one.block.eosiojava.models.rpcProvider
The EndPoint for Rpc provider
EosioEndPoint(String, int, String) - Constructor for class one.block.eosiojava.models.rpcProvider.EosioEndPoint
Instantiates a new Eosio end point.
EosioError - Exception in one.block.eosiojava.error
Error class is used when there is an exception while attempting to process anything inside the Eosio-java library
EosioError() - Constructor for exception one.block.eosiojava.error.EosioError
Create an EosioError with a null message and original exception.
EosioError(String) - Constructor for exception one.block.eosiojava.error.EosioError
Construct an EosioError with the given message.
EosioError(String, Exception) - Constructor for exception one.block.eosiojava.error.EosioError
Construct an EosioError with the given message and original exception.
EosioError(Exception) - Constructor for exception one.block.eosiojava.error.EosioError
Construct an EosioError with the given original exception.
EOSIOName - Class in one.block.eosiojava.models
Class holds block chain account name.
EOSIOName(String) - Constructor for class one.block.eosiojava.models.EOSIOName
Initialize EOSIOName object with EOSIO account name in String format
EosioTransactionSignatureRequest - Class in one.block.eosiojava.models.signatureProvider
The request object that will be sent to SignatureProvider.
EosioTransactionSignatureRequest(String, List<String>, String, List<BinaryAbi>, boolean) - Constructor for class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Instantiates a new Eosio transaction signature request.
EosioTransactionSignatureResponse - Class in one.block.eosiojava.models.signatureProvider
The response object returned from the SignatureProvider after the transaction has been signed.
EosioTransactionSignatureResponse(String, List<String>, SignatureProviderError) - Constructor for class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureResponse
 
equals(Object) - Method in class one.block.eosiojava.models.EOSIOName
 
ERROR_PARSING_PEM_OBJECT - Static variable in class one.block.eosiojava.error.ErrorConstants
The PEM object could not be parsed.
ERROR_READING_PEM_OBJECT - Static variable in class one.block.eosiojava.error.ErrorConstants
The object provided is not in the PEM format.
ERROR_RETRIEVING_ABI - Static variable in class one.block.eosiojava.error.ErrorConstants
 
ErrorConstants - Class in one.block.eosiojava.error
 
EXTRACT_SERIALIZIED_TRANS_FROM_SIGNABLE_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Unable to extract the serialized transaction from the signable transaction.
extractEOSPublicKeyFromPrivateKey(boolean) - Method in class one.block.eosiojava.utilities.PEMProcessor
Extract EOS public key
extractPEMPublicKeyFromPrivateKey(boolean) - Method in class one.block.eosiojava.utilities.PEMProcessor
Extract PEM public key
extractSerializedTransactionFromSignable(String) - Static method in class one.block.eosiojava.utilities.EOSFormatter
Extract serialized transaction from a signable transaction

G

GET_REQUIRED_KEY_RPC_EMPTY_RESULT - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if IRPCProvider.getRequiredKeys(GetRequiredKeysRequest) returns no key.
getAbi(String, EOSIOName) - Method in class one.block.eosiojava.implementations.ABIProviderImpl
Return an ABI given the chain id and account name desired.
getAbi(String, EOSIOName) - Method in interface one.block.eosiojava.interfaces.IABIProvider
Gets abi by EOSIOName.
getAbi() - Method in class one.block.eosiojava.models.AbiEosSerializationObject
Gets the abi.
getAbi() - Method in class one.block.eosiojava.models.rpcProvider.response.GetRawAbiResponse
Gets The ABI (raw ABI) of the account name (contract name).
getAbi() - Method in class one.block.eosiojava.models.signatureProvider.BinaryAbi
Gets ABI.
GetAbiError - Exception in one.block.eosiojava.error.abiProvider
Error class is used when there is an exception while attempting to call the GetAbi or GetAbis methods of IABIProvider IABIProvider.
GetAbiError() - Constructor for exception one.block.eosiojava.error.abiProvider.GetAbiError
 
GetAbiError(String) - Constructor for exception one.block.eosiojava.error.abiProvider.GetAbiError
 
GetAbiError(String, Exception) - Constructor for exception one.block.eosiojava.error.abiProvider.GetAbiError
 
GetAbiError(Exception) - Constructor for exception one.block.eosiojava.error.abiProvider.GetAbiError
 
getAbiHash() - Method in class one.block.eosiojava.models.rpcProvider.response.GetRawAbiResponse
 
getAbiProvider() - Method in class one.block.eosiojava.session.TransactionSession
Get ABI Provider to be used as a reference on TransactionProcessor object
Responsible for managing ABIs for serialization/deserialization
getAbis(String, List<EOSIOName>) - Method in class one.block.eosiojava.implementations.ABIProviderImpl
Return a map of ABIs given the chain id and account names desired.
getAbis(String, List<EOSIOName>) - Method in interface one.block.eosiojava.interfaces.IABIProvider
Gets multiple ABI by list of EOSIOName.
getAbis() - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Gets ABIs.
getAccount() - Method in class one.block.eosiojava.models.rpcProvider.Action
Gets contract account name.
getAccountName() - Method in class one.block.eosiojava.models.EOSIOName
Get EOSIO account name in String format.
getAccountName() - Method in class one.block.eosiojava.models.rpcProvider.request.GetRawAbiRequest
Gets the string representation of EOSIO name type
getAccountName() - Method in class one.block.eosiojava.models.rpcProvider.response.GetRawAbiResponse
Gets the account name (contract name) found in EOSIOName
getAccountName() - Method in class one.block.eosiojava.models.signatureProvider.BinaryAbi
Gets contract account name.
getActionMroot() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getActions() - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
getActor() - Method in class one.block.eosiojava.models.rpcProvider.Authorization
Gets actor name.
getAlgorithm() - Method in class one.block.eosiojava.utilities.PEMProcessor
Gets the algorithm used to generate the key from its PEM format.
getAuthorization() - Method in class one.block.eosiojava.models.rpcProvider.Action
Gets authorization (actor and permission) to make transaction.
getAvailableKeys() - Method in interface one.block.eosiojava.interfaces.ISignatureProvider
Gets available keys from signature provider
Check createSignatureRequest() flow in "complete workflow" for more detail of how the method is used
getAvailableKeys() - Method in class one.block.eosiojava.models.rpcProvider.request.GetRequiredKeysRequest
Gets available keys which come from a Signature Provider or are manually set.
GetAvailableKeysError - Exception in one.block.eosiojava.error.signatureProvider
Error class is used when there is an exception while attempting to call getAvailableKeys() of SignatureProvider
GetAvailableKeysError() - Constructor for exception one.block.eosiojava.error.signatureProvider.GetAvailableKeysError
 
GetAvailableKeysError(String) - Constructor for exception one.block.eosiojava.error.signatureProvider.GetAvailableKeysError
 
GetAvailableKeysError(String, Exception) - Constructor for exception one.block.eosiojava.error.signatureProvider.GetAvailableKeysError
 
GetAvailableKeysError(Exception) - Constructor for exception one.block.eosiojava.error.signatureProvider.GetAvailableKeysError
 
getBlock(GetBlockRequest) - Method in interface one.block.eosiojava.interfaces.IRPCProvider
Returns an object containing various details about a specific block on the blockchain.
getBlockCpuLimit() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
 
getBlockExtensions() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getBlockNetLimit() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
 
getBlockNum() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
Gets the block number.
getBlockNumOrId() - Method in class one.block.eosiojava.models.rpcProvider.request.GetBlockRequest
Gets block number or a block id.
GetBlockRequest - Class in one.block.eosiojava.models.rpcProvider.request
The request class for getBlock() RPC call IRPCProvider.getBlock(GetBlockRequest)
GetBlockRequest(String) - Constructor for class one.block.eosiojava.models.rpcProvider.request.GetBlockRequest
Instantiates a new GetBlockRequest.
GetBlockResponse - Class in one.block.eosiojava.models.rpcProvider.response
The response of getBlock() RPC call IRPCProvider.getBlock(GetBlockRequest)
GetBlockResponse() - Constructor for class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
GetBlockRpcError - Exception in one.block.eosiojava.error.rpcProvider
Error class is used when there is an exception while attempting to use the RPC call, getBlock().
GetBlockRpcError() - Constructor for exception one.block.eosiojava.error.rpcProvider.GetBlockRpcError
 
GetBlockRpcError(String) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetBlockRpcError
 
GetBlockRpcError(String, Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetBlockRpcError
 
GetBlockRpcError(Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetBlockRpcError
 
getBlocksBehind() - Method in class one.block.eosiojava.models.rpcProvider.TransactionConfig
Gets blocks behind.
getChainId() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
Gets the chain id of the blockchain transactions are being sent to.
getChainId() - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Gets the chain id.
getCode() - Method in class one.block.eosiojava.models.rpcProvider.response.RpcError
Gets the error code.
getCode() - Method in class one.block.eosiojava.models.rpcProvider.response.RPCResponseError
Gets error code.
getCodeHash() - Method in class one.block.eosiojava.models.rpcProvider.response.GetRawAbiResponse
 
getCompression() - Method in class one.block.eosiojava.models.rpcProvider.request.PushTransactionRequest
Gets the compression used, usually 0.
getConfirmed() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getConnectionTimeout() - Method in class one.block.eosiojava.models.rpcProvider.RPCConfig
Gets connection timeout.
getContextFreeActions() - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
getContract() - Method in class one.block.eosiojava.models.AbiEosSerializationObject
Gets contract.
getCurveDomainParameters(AlgorithmEmployed) - Static method in class one.block.eosiojava.utilities.PEMProcessor
Gets EC Curve's domain parameter by curve type
getData() - Method in class one.block.eosiojava.models.rpcProvider.Action
Gets action data.
getDelaySec() - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
getDERFormat() - Method in class one.block.eosiojava.utilities.PEMProcessor
Gets the DER encoded format of the key from its PEM format.
getDetails() - Method in class one.block.eosiojava.models.rpcProvider.response.RpcError
Gets a more comprehensive explanation of the error.
getError() - Method in class one.block.eosiojava.models.rpcProvider.response.RPCResponseError
Gets error detail.
getError() - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureResponse
Gets error.
getExpiration() - Method in class one.block.eosiojava.models.rpcProvider.Transaction
Gets expiration.
getExpiresSeconds() - Method in class one.block.eosiojava.models.rpcProvider.TransactionConfig
Gets the expiration time for the transaction.
getFile() - Method in class one.block.eosiojava.models.rpcProvider.response.Detail
Gets the error file from backend.
getGson(String) - Static method in class one.block.eosiojava.utilities.Utils
Getting a GSON object with a date time pattern
getHeadBlockId() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
The head block id.
getHeadBlockNum() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
Gets the head block number.
getHeadBlockProducer() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
Gets the head block producer name.
getHeadBlockTime() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
Gets the head block time.
getHeaderExtensions() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getHex() - Method in class one.block.eosiojava.models.AbiEosSerializationObject
Gets Hex.
getHost() - Method in class one.block.eosiojava.models.rpcProvider.EosioEndPoint
Gets host.
getId() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
Gets the block id.
getInfo() - Method in interface one.block.eosiojava.interfaces.IRPCProvider
Returns an object containing various details about the blockchain.
GetInfoResponse - Class in one.block.eosiojava.models.rpcProvider.response
The response of getInfo() RPC call IRPCProvider.getInfo().
GetInfoResponse() - Constructor for class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
 
GetInfoRpcError - Exception in one.block.eosiojava.error.rpcProvider
Error class is used when there is an exception while attempting to use the RPC call, getInfo().
GetInfoRpcError() - Constructor for exception one.block.eosiojava.error.rpcProvider.GetInfoRpcError
 
GetInfoRpcError(String) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetInfoRpcError
 
GetInfoRpcError(String, Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetInfoRpcError
 
GetInfoRpcError(Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetInfoRpcError
 
getJson() - Method in class one.block.eosiojava.models.AbiEosSerializationObject
Gets the json.
getKeyData() - Method in class one.block.eosiojava.utilities.PEMProcessor
Gets the key as a byte array from its PEM format.
getLastIrreversibleBlockId() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
 
getLastIrreversibleBlockNum() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
 
getLineNumber() - Method in class one.block.eosiojava.models.rpcProvider.response.Detail
Gets the error line number from backend.
getMaxCpuUsageMs() - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
getMaxNetUsageWords() - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
getMessage() - Method in class one.block.eosiojava.models.rpcProvider.response.Detail
Gets the error message.
getMessage() - Method in class one.block.eosiojava.models.rpcProvider.response.RPCResponseError
Gets error message.
getMethod() - Method in class one.block.eosiojava.models.rpcProvider.response.Detail
Gets the method that caused the error from backend.
getName() - Method in class one.block.eosiojava.models.AbiEosSerializationObject
Gets name.
getName() - Method in class one.block.eosiojava.models.rpcProvider.Action
Gets contract action name.
getName() - Method in class one.block.eosiojava.models.rpcProvider.response.RpcError
Gets the name.
getNewProducers() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getOriginalTransaction() - Method in class one.block.eosiojava.session.TransactionProcessor
Gets Transaction instance that holds the original transaction reference after signature provider returns the signing result.
getPackagedContextFreeData() - Method in class one.block.eosiojava.models.rpcProvider.request.PushTransactionRequest
Gets packaged context free data in hex.
getPackTrx() - Method in class one.block.eosiojava.models.rpcProvider.request.PushTransactionRequest
Gets the packed transaction (serialized transaction).
getPermission() - Method in class one.block.eosiojava.models.rpcProvider.Authorization
Gets permission of the actor.
getPort() - Method in class one.block.eosiojava.models.rpcProvider.EosioEndPoint
Gets port.
getPrevious() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getProcessed() - Method in class one.block.eosiojava.models.rpcProvider.response.PushTransactionResponse
 
getProducer() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
Gets the block producer name.
getProducerSignature() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getProtocol() - Method in class one.block.eosiojava.models.rpcProvider.EosioEndPoint
Gets protocol.
getRawAbi(GetRawAbiRequest) - Method in interface one.block.eosiojava.interfaces.IRPCProvider
Gets raw abi for a given contract.
GetRawAbiRequest - Class in one.block.eosiojava.models.rpcProvider.request
The request class of getRawAbi() RPC call IRPCProvider.getRawAbi(GetRawAbiRequest)
GetRawAbiRequest(String) - Constructor for class one.block.eosiojava.models.rpcProvider.request.GetRawAbiRequest
Instantiates a new GetRawAbiRequest.
GetRawAbiResponse - Class in one.block.eosiojava.models.rpcProvider.response
The response of getRawAbi() RPC call IRPCProvider.getRawAbi(GetRawAbiRequest)
GetRawAbiResponse() - Constructor for class one.block.eosiojava.models.rpcProvider.response.GetRawAbiResponse
 
GetRawAbiRpcError - Exception in one.block.eosiojava.error.rpcProvider
Error class is used when there is an exception while attempting to use the RPC call, getRawAbi().
GetRawAbiRpcError() - Constructor for exception one.block.eosiojava.error.rpcProvider.GetRawAbiRpcError
 
GetRawAbiRpcError(String) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetRawAbiRpcError
 
GetRawAbiRpcError(String, Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetRawAbiRpcError
 
GetRawAbiRpcError(Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetRawAbiRpcError
 
getReadTimeout() - Method in class one.block.eosiojava.models.rpcProvider.RPCConfig
Gets read timeout.
getRefBlockNum() - Method in class one.block.eosiojava.models.rpcProvider.Transaction
Gets ref block number.
getRefBlockPrefix() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
Gets reference block prefix.
getRefBlockPrefix() - Method in class one.block.eosiojava.models.rpcProvider.Transaction
Gets ref block prefix.
getRequiredKeys(GetRequiredKeysRequest) - Method in interface one.block.eosiojava.interfaces.IRPCProvider
Returns the required keys needed to sign a transaction.
getRequiredKeys() - Method in class one.block.eosiojava.models.rpcProvider.response.GetRequiredKeysResponse
Gets the required public EOSIO keys to sign the transaction.
GetRequiredKeysRequest - Class in one.block.eosiojava.models.rpcProvider.request
The request of getRequiredKeys RPC call IRPCProvider.getRequiredKeys(GetRequiredKeysRequest)
GetRequiredKeysRequest(List<String>, Transaction) - Constructor for class one.block.eosiojava.models.rpcProvider.request.GetRequiredKeysRequest
Instantiates a new GetRequiredKeysRequest.
GetRequiredKeysResponse - Class in one.block.eosiojava.models.rpcProvider.response
The response of getRequiredKeys() RPC call IRPCProvider.getRequiredKeys(GetRequiredKeysRequest)
GetRequiredKeysResponse() - Constructor for class one.block.eosiojava.models.rpcProvider.response.GetRequiredKeysResponse
 
GetRequiredKeysRpcError - Exception in one.block.eosiojava.error.rpcProvider
Error class is used when there is an exception while attempting to use the RPC call, getRequiredKeys().
GetRequiredKeysRpcError() - Constructor for exception one.block.eosiojava.error.rpcProvider.GetRequiredKeysRpcError
 
GetRequiredKeysRpcError(String) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetRequiredKeysRpcError
 
GetRequiredKeysRpcError(String, Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetRequiredKeysRpcError
 
GetRequiredKeysRpcError(Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.GetRequiredKeysRpcError
 
getRpcProvider() - Method in class one.block.eosiojava.session.TransactionSession
Get rpc provider to be used as a reference on TransactionProcessor object
Responsible for communicate with EOSIO chain
getScheduleVersion() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getSerializationProvider() - Method in class one.block.eosiojava.session.TransactionSession
Get serialization provider to be used as a reference on TransactionProcessor object
Responsible for serialization/deserialization between JSON and Hex for communicate with EOSIO chain
getSerializedTransaction() - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Gets the serialized transaction.
getSerializedTransaction() - Method in class one.block.eosiojava.session.TransactionProcessor
Gets serialized version of Transaction.
getSerializeTransaction() - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureResponse
Gets the serialized transaction.
getServerVersion() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
 
getServerVersionString() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
 
getSignatureProvider() - Method in class one.block.eosiojava.session.TransactionSession
Get signature provider to be used as a reference on TransactionProcessor object
Responsible for managing keys, create signature to make transaction to EOSIO chain
getSignatures() - Method in class one.block.eosiojava.models.rpcProvider.request.PushTransactionRequest
Gets list of signatures required to authorize transaction.
getSignatures() - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureResponse
Gets signatures.
getSignatures() - Method in class one.block.eosiojava.session.TransactionProcessor
List of signatures that will be available after they are returned from the signature provider.
getSigningPublicKeys() - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Gets the signing public key.
getString() - Method in enum one.block.eosiojava.enums.AlgorithmEmployed
Gets string value of AlgorithmEmployed's enum
getTimestamp() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
Gets the timestamp for the block from the blockchain.
getTransaction() - Method in class one.block.eosiojava.models.rpcProvider.request.GetRequiredKeysRequest
Gets transaction.
getTransaction() - Method in class one.block.eosiojava.session.TransactionProcessor
Gets transaction instance which holds all data relating to EOS Transaction
getTransactionConfig() - Method in class one.block.eosiojava.session.TransactionProcessor
Gets configuration for Transaction which offers ability to set:
getTransactionExtensions() - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
getTransactionId() - Method in class one.block.eosiojava.models.rpcProvider.response.PushTransactionResponse
Gets the transaction id of the successful transaction.
getTransactionMroot() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getTransactionProcessor() - Method in class one.block.eosiojava.session.TransactionSession
Create and return a new instance of TransactionProcessor
getTransactionProcessor(Transaction) - Method in class one.block.eosiojava.session.TransactionSession
Create and return a new instance of TransactionProcessor with preset transaction
getTransactions() - Method in class one.block.eosiojava.models.rpcProvider.response.GetBlockResponse
 
getType() - Method in class one.block.eosiojava.models.AbiEosSerializationObject
Gets type.
getType() - Method in class one.block.eosiojava.utilities.PEMProcessor
Gets the PEM Object key type (i.e.
getVirtualBlockCpuLimit() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
 
getVirtualBlockNetLimit() - Method in class one.block.eosiojava.models.rpcProvider.response.GetInfoResponse
 
getWhat() - Method in class one.block.eosiojava.models.rpcProvider.response.RpcError
 

H

hashCode() - Method in class one.block.eosiojava.models.EOSIOName
 

I

IABIProvider - Interface in one.block.eosiojava.interfaces
Interface of ABI Provider
INVALID_DER_PRIVATE_KEY - Static variable in class one.block.eosiojava.error.ErrorConstants
The private key is not in DER format.
INVALID_EOS_PRIVATE_KEY - Static variable in class one.block.eosiojava.error.ErrorConstants
The private key provided is not in the EOS format.
INVALID_EOS_PUBLIC_KEY - Static variable in class one.block.eosiojava.error.ErrorConstants
The public key provided is not in the EOS format.
INVALID_INPUT_SIGNABLE_TRANS_EXTRACT_SERIALIZIED_TRANS_FROM_SIGNABLE - Static variable in class one.block.eosiojava.error.ErrorConstants
The signable transaction was improperly formatted.
INVALID_INPUT_SIGNABLE_TRANS_LENGTH_EXTRACT_SERIALIZIED_TRANS_FROM_SIGNABLE - Static variable in class one.block.eosiojava.error.ErrorConstants
The length of the signable transaction was incorrect and the serialized transaction could not be extracted.
INVALID_PEM_OBJECT - Static variable in class one.block.eosiojava.error.ErrorConstants
PEM object could not be read.
INVALID_PEM_PRIVATE_KEY - Static variable in class one.block.eosiojava.error.ErrorConstants
The private key is not in PEM format.
IRPCProvider - Interface in one.block.eosiojava.interfaces
The interface of an RPC provider.
ISerializationProvider - Interface in one.block.eosiojava.interfaces
Interface of Serialization Provider
ISignatureProvider - Interface in one.block.eosiojava.interfaces
The interface of Signature provider.
isModifiable() - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
isModifiable boolean.
isTransactionModificationAllowed() - Method in class one.block.eosiojava.session.TransactionProcessor
Should the signature provider be able to modify the transaction?

K

KEY_DATA_NOT_FOUND - Static variable in class one.block.eosiojava.error.ErrorConstants
There was no key data in the PEM object.

L

LowSVerificationError - Exception in one.block.eosiojava.error.utilities
Error thrown when exception occurs during signature manipulations.
LowSVerificationError() - Constructor for exception one.block.eosiojava.error.utilities.LowSVerificationError
 
LowSVerificationError(String) - Constructor for exception one.block.eosiojava.error.utilities.LowSVerificationError
 
LowSVerificationError(String, Exception) - Constructor for exception one.block.eosiojava.error.utilities.LowSVerificationError
 
LowSVerificationError(Exception) - Constructor for exception one.block.eosiojava.error.utilities.LowSVerificationError
 

M

MISSING_ABI_FROM_RESPONSE - Static variable in class one.block.eosiojava.error.ErrorConstants
 

N

NO_ABI_FOUND - Static variable in class one.block.eosiojava.error.ErrorConstants
 
NO_RESPONSE_RETRIEVING_ABI - Static variable in class one.block.eosiojava.error.ErrorConstants
 
NON_CANONICAL_SIGNATURE - Static variable in class one.block.eosiojava.error.ErrorConstants
The signature provided failed the canonical check.

O

one.block.eosiojava.enums - package one.block.eosiojava.enums
Provides the enums necessary for using in eosio-java core.
one.block.eosiojava.error - package one.block.eosiojava.error
Provides the classes/constants necessary to describe meaningful exceptions that occur in all processes of eosio-java like: TransactionProcessor transaction processing flow, EOSFormatter utilities and other processes.
one.block.eosiojava.error.abiProvider - package one.block.eosiojava.error.abiProvider
Provides the classes necessary for describe meaningful exceptions that occur during an ABI Provider implementation like: GetAbiError
one.block.eosiojava.error.rpcProvider - package one.block.eosiojava.error.rpcProvider
Provides the classes necessary for describe meaningful exceptions that occur during an PRC Provider implementation like: GetInfoRpcError
one.block.eosiojava.error.serializationProvider - package one.block.eosiojava.error.serializationProvider
Provides the classes necessary to describe meaningful exceptions that occur during a Serialization Provider implementation like: SerializeTransactionError
one.block.eosiojava.error.session - package one.block.eosiojava.error.session
Provides the classes necessary to describe meaningful exceptions that occur during TransactionProcessor and TransactionSession implementations like: TransactionGetSignatureError
one.block.eosiojava.error.signatureProvider - package one.block.eosiojava.error.signatureProvider
Provides the classes necessary to describe meaningful exceptions that occur during a signature provider implementation like SignTransactionError
one.block.eosiojava.error.utilities - package one.block.eosiojava.error.utilities
Provides the classes necessary to describe meaningful exceptions that occur while using eosio-java utilities.
one.block.eosiojava.implementations - package one.block.eosiojava.implementations
Provides implementation classes for default implementation of eosio-java provider interfaces like IABIProvider
one.block.eosiojava.interfaces - package one.block.eosiojava.interfaces
Provides interfaces for requisite eosio-java components that are used as parameters in TransactionProcessor.
one.block.eosiojava.models - package one.block.eosiojava.models
Provides model classes for using on providers like ISignatureProvider, IRPCProvider and IABIProvider
one.block.eosiojava.models.rpcProvider - package one.block.eosiojava.models.rpcProvider
Provides request/response model classes for RPC provider IRPCProvider
one.block.eosiojava.models.rpcProvider.request - package one.block.eosiojava.models.rpcProvider.request
Provides request model classes for RPC provider IRPCProvider
one.block.eosiojava.models.rpcProvider.response - package one.block.eosiojava.models.rpcProvider.response
Provides response model classes for RPC provider IRPCProvider
one.block.eosiojava.models.signatureProvider - package one.block.eosiojava.models.signatureProvider
Provides model classes for Signature provider ISignatureProvider
one.block.eosiojava.session - package one.block.eosiojava.session
Provides the core classes to handle transaction manipulation.
one.block.eosiojava.utilities - package one.block.eosiojava.utilities
Provides the utility classes to support handling key conversion, byte handling, datetime handling and pem processing.

P

PEMProcessor - Class in one.block.eosiojava.utilities
This is a wrapper class for PEMObjects that throws a PEMProcessorError if an invalid PEMObject is passed into the constructor.
PEMProcessor(String) - Constructor for class one.block.eosiojava.utilities.PEMProcessor
Initialize PEMProcessor with PEM content in String format.
PEMProcessorError - Exception in one.block.eosiojava.error.utilities
Error that originates from the PEMProcessor class.
PEMProcessorError() - Constructor for exception one.block.eosiojava.error.utilities.PEMProcessorError
 
PEMProcessorError(String) - Constructor for exception one.block.eosiojava.error.utilities.PEMProcessorError
 
PEMProcessorError(String, Exception) - Constructor for exception one.block.eosiojava.error.utilities.PEMProcessorError
 
PEMProcessorError(Exception) - Constructor for exception one.block.eosiojava.error.utilities.PEMProcessorError
 
prepare(List<Action>, List<Action>) - Method in class one.block.eosiojava.session.TransactionProcessor
Prepare action's data from input and create new instance of Transaction if it is not set.
prepare(List<Action>) - Method in class one.block.eosiojava.session.TransactionProcessor
Prepare action's data from input and create new instance of Transaction if it is not set.
prepareSerializedTransactionForSigning(String, String) - Static method in class one.block.eosiojava.utilities.EOSFormatter
Preparing signable transaction for signing.
PUBLIC_KEY_COMPRESSION_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
The public key could not be compressed.
PUBLIC_KEY_COULD_NOT_BE_EXTRACTED_FROM_PRIVATE_KEY - Static variable in class one.block.eosiojava.error.ErrorConstants
The public key could not be extracted from the provided private key.
PUBLIC_KEY_DECOMPRESSION_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
The public key could not be decompressed.
PUBLIC_KEY_IS_EMPTY - Static variable in class one.block.eosiojava.error.ErrorConstants
The public key provided for decoding was empty.
pushTransaction(PushTransactionRequest) - Method in interface one.block.eosiojava.interfaces.IRPCProvider
This method expects a transaction in JSON format and will attempt to apply it to the blockchain.
PushTransactionRequest - Class in one.block.eosiojava.models.rpcProvider.request
The request of PushTransactionRequest RPC call IRPCProvider.pushTransaction(PushTransactionRequest)
PushTransactionRequest(List<String>, int, String, String) - Constructor for class one.block.eosiojava.models.rpcProvider.request.PushTransactionRequest
Instantiates a new PushTransactionRequest.
PushTransactionResponse - Class in one.block.eosiojava.models.rpcProvider.response
The response of the pushTransaction() RPC call IRPCProvider.pushTransaction(PushTransactionRequest)
PushTransactionResponse() - Constructor for class one.block.eosiojava.models.rpcProvider.response.PushTransactionResponse
 
PushTransactionRpcError - Exception in one.block.eosiojava.error.rpcProvider
Error class is used when there is an exception while attempting to use the RPC call, pushTransaction().
PushTransactionRpcError() - Constructor for exception one.block.eosiojava.error.rpcProvider.PushTransactionRpcError
 
PushTransactionRpcError(String) - Constructor for exception one.block.eosiojava.error.rpcProvider.PushTransactionRpcError
 
PushTransactionRpcError(String, Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.PushTransactionRpcError
 
PushTransactionRpcError(Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.PushTransactionRpcError
 

R

REQUESTED_ACCCOUNT_NOT_EQUAL_RETURNED - Static variable in class one.block.eosiojava.error.ErrorConstants
 
RPCConfig - Class in one.block.eosiojava.models.rpcProvider
The config class for RPC provider
RPCConfig(long, long) - Constructor for class one.block.eosiojava.models.rpcProvider.RPCConfig
Instantiates a new Rpc config.
RpcError - Class in one.block.eosiojava.models.rpcProvider.response
The error detail of RPCResponseError
RpcError() - Constructor for class one.block.eosiojava.models.rpcProvider.response.RpcError
 
RpcProviderError - Exception in one.block.eosiojava.error.rpcProvider
Error class is used when there is an exception while attempting to use any RPC call.
RpcProviderError() - Constructor for exception one.block.eosiojava.error.rpcProvider.RpcProviderError
 
RpcProviderError(String) - Constructor for exception one.block.eosiojava.error.rpcProvider.RpcProviderError
 
RpcProviderError(String, Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.RpcProviderError
 
RpcProviderError(Exception) - Constructor for exception one.block.eosiojava.error.rpcProvider.RpcProviderError
 
RPCResponseError - Class in one.block.eosiojava.models.rpcProvider.response
The generic response error could be thrown from Rpc calls of IRPCProvider
RPCResponseError() - Constructor for class one.block.eosiojava.models.rpcProvider.response.RPCResponseError
 

S

SerializationProviderError - Exception in one.block.eosiojava.error.serializationProvider
Error class is used when there is an exception while attempting to call any method of Serialization Provider.
SerializationProviderError() - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializationProviderError
 
SerializationProviderError(String) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializationProviderError
 
SerializationProviderError(String, Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializationProviderError
 
SerializationProviderError(Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializationProviderError
 
serialize(AbiEosSerializationObject) - Method in interface one.block.eosiojava.interfaces.ISerializationProvider
Perform a serialization process to convert a JSON string to a HEX string given the parameters provided in the input serializationObject.
serialize() - Method in class one.block.eosiojava.session.TransactionProcessor
Getting serialized version of Transaction
serializeAbi(String) - Method in interface one.block.eosiojava.interfaces.ISerializationProvider
Convenience method to transform an ABI JSON string to a hex string.
SerializeAbiError - Exception in one.block.eosiojava.error.serializationProvider
Error class is used when there is an exception while attempting to call serializeAbi() of Serialization Provider
SerializeAbiError() - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeAbiError
 
SerializeAbiError(String) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeAbiError
 
SerializeAbiError(String, Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeAbiError
 
SerializeAbiError(Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeAbiError
 
SerializeError - Exception in one.block.eosiojava.error.serializationProvider
Error class is used when there is an exception while attempting to call serialize() of Serialization Provider
SerializeError() - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeError
 
SerializeError(String) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeError
 
SerializeError(String, Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeError
 
SerializeError(Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeError
 
serializeTransaction(String) - Method in interface one.block.eosiojava.interfaces.ISerializationProvider
Convenience method to transform a transaction JSON string to a hex string.
SerializeTransactionError - Exception in one.block.eosiojava.error.serializationProvider
Error class is used when there is an exception while attempting to call serializeTransaction() of Serialization Provider
SerializeTransactionError() - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeTransactionError
 
SerializeTransactionError(String) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeTransactionError
 
SerializeTransactionError(String, Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeTransactionError
 
SerializeTransactionError(Exception) - Constructor for exception one.block.eosiojava.error.serializationProvider.SerializeTransactionError
 
setAbi(String) - Method in class one.block.eosiojava.models.signatureProvider.BinaryAbi
Sets ABI.
setAbis(List<BinaryAbi>) - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Sets ABIs.
setAccount(String) - Method in class one.block.eosiojava.models.rpcProvider.Action
Sets contract account name.
setAccountName(String) - Method in class one.block.eosiojava.models.EOSIOName
Get EOSIO account name
setAccountName(String) - Method in class one.block.eosiojava.models.rpcProvider.request.GetRawAbiRequest
Sets the string representation of EOSIO name type
setAccountName(String) - Method in class one.block.eosiojava.models.signatureProvider.BinaryAbi
Sets contract account name.
setActions(List<Action>) - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
setActor(String) - Method in class one.block.eosiojava.models.rpcProvider.Authorization
Sets actor name.
setAuthorization(List<Authorization>) - Method in class one.block.eosiojava.models.rpcProvider.Action
Sets authorization (actor and permission) to make transaction
setAvailableKeys(List<String>) - Method in class one.block.eosiojava.models.rpcProvider.request.GetRequiredKeysRequest
Sets available keys which come from a Signature Provider or are manually set.
setAvailableKeys(List<String>) - Method in class one.block.eosiojava.session.TransactionProcessor
Set value for available keys list.
setBlockNumOrId(String) - Method in class one.block.eosiojava.models.rpcProvider.request.GetBlockRequest
Sets block number or a block id.
setBlocksBehind(int) - Method in class one.block.eosiojava.models.rpcProvider.TransactionConfig
Sets blocks behind.
setChainId(String) - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Sets the chain id.
setChainId(String) - Method in class one.block.eosiojava.session.TransactionProcessor
Sets chain id value.
setCompression(int) - Method in class one.block.eosiojava.models.rpcProvider.request.PushTransactionRequest
Sets the compression used, usually 0.
setConnectionTimeout(long) - Method in class one.block.eosiojava.models.rpcProvider.RPCConfig
Sets connection timeout.
setContextFreeActions(List<Action>) - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
setData(String) - Method in class one.block.eosiojava.models.rpcProvider.Action
Sets action data.
setDelaySec(BigInteger) - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
setExpiration(String) - Method in class one.block.eosiojava.models.rpcProvider.Transaction
Sets expiration.
setExpiresSeconds(int) - Method in class one.block.eosiojava.models.rpcProvider.TransactionConfig
Sets the expiration time for the transaction.
setHex(String) - Method in class one.block.eosiojava.models.AbiEosSerializationObject
Sets Hex.
setHost(String) - Method in class one.block.eosiojava.models.rpcProvider.EosioEndPoint
Sets host.
setIsTransactionModificationAllowed(boolean) - Method in class one.block.eosiojava.session.TransactionProcessor
True: The transaction could be modified and updated to current transaction by Signature provider.
setJson(String) - Method in class one.block.eosiojava.models.AbiEosSerializationObject
Set json.
setMaxCpuUsageMs(BigInteger) - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
setMaxNetUsageWords(BigInteger) - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
setModifiable(boolean) - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Sets isModifiable.
setName(String) - Method in class one.block.eosiojava.models.rpcProvider.Action
Sets contact action name.
setPackagedContextFreeData(String) - Method in class one.block.eosiojava.models.rpcProvider.request.PushTransactionRequest
Sets packaged context free data in hex
setPackTrx(String) - Method in class one.block.eosiojava.models.rpcProvider.request.PushTransactionRequest
Sets the packed transaction (serialized transaction).
setPermission(String) - Method in class one.block.eosiojava.models.rpcProvider.Authorization
Sets permission of the actor.
setPort(int) - Method in class one.block.eosiojava.models.rpcProvider.EosioEndPoint
Sets port.
setProtocol(String) - Method in class one.block.eosiojava.models.rpcProvider.EosioEndPoint
Sets protocol.
setReadTimeout(long) - Method in class one.block.eosiojava.models.rpcProvider.RPCConfig
Sets read timeout.
setRefBlockNum(BigInteger) - Method in class one.block.eosiojava.models.rpcProvider.Transaction
Sets ref block number.
setRefBlockPrefix(BigInteger) - Method in class one.block.eosiojava.models.rpcProvider.Transaction
Sets ref block prefix.
setRequiredKeys(List<String>) - Method in class one.block.eosiojava.session.TransactionProcessor
Set value for required keys list
setSerializedTransaction(String) - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Sets the serialized transaction.
setSignatures(List<String>) - Method in class one.block.eosiojava.models.rpcProvider.request.PushTransactionRequest
Sets list of signatures required to authorize transaction.
setSigningPublicKeys(List<String>) - Method in class one.block.eosiojava.models.signatureProvider.EosioTransactionSignatureRequest
Sets the signing public key.
setTransaction(Transaction) - Method in class one.block.eosiojava.models.rpcProvider.request.GetRequiredKeysRequest
Sets transaction.
setTransactionConfig(TransactionConfig) - Method in class one.block.eosiojava.session.TransactionProcessor
Sets configuration for Transaction which offers ability to set:
setTransactionExtensions(List<String>) - Method in class one.block.eosiojava.models.rpcProvider.Transaction
 
sha256() - Method in class one.block.eosiojava.utilities.ByteFormatter
Calculate the sha256 hash of the current ByteFormatter context and return it as a new ByteFormatter.
sign() - Method in class one.block.eosiojava.session.TransactionProcessor
Sign the transaction by passing EosioTransactionSignatureRequest to signature provider
signAndBroadcast() - Method in class one.block.eosiojava.session.TransactionProcessor
Sign and broadcast the transaction and signature/s to chain
SIGNATURE_FORMATTING_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Signature formatting failed.
SignatureProviderError - Exception in one.block.eosiojava.error.signatureProvider
Error class is used when there is an exception while attempting to call any method of SignatureProvider
SignatureProviderError() - Constructor for exception one.block.eosiojava.error.signatureProvider.SignatureProviderError
 
SignatureProviderError(String) - Constructor for exception one.block.eosiojava.error.signatureProvider.SignatureProviderError
 
SignatureProviderError(String, Exception) - Constructor for exception one.block.eosiojava.error.signatureProvider.SignatureProviderError
 
SignatureProviderError(Exception) - Constructor for exception one.block.eosiojava.error.signatureProvider.SignatureProviderError
 
signTransaction(EosioTransactionSignatureRequest) - Method in interface one.block.eosiojava.interfaces.ISignatureProvider
Sign a transaction in Signature Provider
Check signTransaction flow() in "complete workflow" for more detail
SignTransactionError - Exception in one.block.eosiojava.error.signatureProvider
Error class is used when there is an exception while attempting to call signTransaction() of SignatureProvider
SignTransactionError() - Constructor for exception one.block.eosiojava.error.signatureProvider.SignTransactionError
 
SignTransactionError(String) - Constructor for exception one.block.eosiojava.error.signatureProvider.SignTransactionError
 
SignTransactionError(String, Exception) - Constructor for exception one.block.eosiojava.error.signatureProvider.SignTransactionError
 
SignTransactionError(Exception) - Constructor for exception one.block.eosiojava.error.signatureProvider.SignTransactionError
 

T

toHex() - Method in class one.block.eosiojava.utilities.ByteFormatter
Convert the current ByteFormatter contents to a Hex encoded string and return it.
toJSON() - Method in class one.block.eosiojava.session.TransactionProcessor
Return transaction in JSON string format.
toURL() - Method in class one.block.eosiojava.models.rpcProvider.EosioEndPoint
Return URL object of the endpoint
Transaction - Class in one.block.eosiojava.models.rpcProvider
The Transaction class which has data of actions for each transaction.
Transaction(String, BigInteger, BigInteger, BigInteger, BigInteger, BigInteger, List<Action>, List<Action>, List<String>) - Constructor for class one.block.eosiojava.models.rpcProvider.Transaction
Instantiates a new Transaction.
TRANSACTION_IS_NOT_ALLOWED_TOBE_MODIFIED - Static variable in class one.block.eosiojava.error.ErrorConstants
TRANSACTION_PROCESSOR_ACTIONS_EMPTY_ERROR_MSG - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if actions list is empty during processes of TransactionProcessor.
TRANSACTION_PROCESSOR_BROADCAST_SERIALIZED_TRANSACTION_EMPTY - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if serialized transaction is empty or has not been populated during process of TransactionProcessor.broadcast()
TRANSACTION_PROCESSOR_BROADCAST_SIGN_EMPTY - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if TransactionProcessor.getSignatures() is empty during process of TransactionProcessor.broadcast()
TRANSACTION_PROCESSOR_BROADCAST_TRANS_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if error happens during pushing transaction to backend
TRANSACTION_PROCESSOR_GET_ABI_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if IABIProvider.getAbi(String, EOSIOName) get error.
TRANSACTION_PROCESSOR_GET_AVAILABLE_KEY_EMPTY - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if ISignatureProvider.getAvailableKeys() returns no key.
TRANSACTION_PROCESSOR_GET_AVAILABLE_KEY_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if ISignatureProvider.getAvailableKeys() returns error.
TRANSACTION_PROCESSOR_GET_SIGN_DESERIALIZE_TRANS_EMPTY_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if ISerializationProvider.deserializeTransaction(java.lang.String) returns empty result during deserialize modified serialized transaction inside EosioTransactionSignatureResponse which return from ISignatureProvider.signTransaction(EosioTransactionSignatureRequest)
TRANSACTION_PROCESSOR_GET_SIGN_DESERIALIZE_TRANS_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if ISerializationProvider.deserializeTransaction(java.lang.String) returns error during deserialize modified serialized transaction inside EosioTransactionSignatureResponse which return from ISignatureProvider.signTransaction(EosioTransactionSignatureRequest)
TRANSACTION_PROCESSOR_HEAD_BLOCK_TIME_PARSE_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if parsing head block time from GetInfoResponse.getHeadBlockTime() get error
TRANSACTION_PROCESSOR_PREPARE_CHAINID_NOT_MATCH - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if chain id from GetInfoResponse.getChainId() does not match with the input chain id
TRANSACTION_PROCESSOR_PREPARE_CHAINID_RPC_EMPTY - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if chain id from GetInfoResponse.getChainId() is empty.
TRANSACTION_PROCESSOR_PREPARE_CLONE_CLASS_NOT_FOUND - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if making clone version of transaction is failed by ClassNotFoundException
TRANSACTION_PROCESSOR_PREPARE_CLONE_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if making clone version of transaction is failed.
TRANSACTION_PROCESSOR_PREPARE_RPC_GET_BLOCK - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if IRPCProvider.getBlock(GetBlockRequest) thrown exception during process of TransactionProcessor.prepare(List)
TRANSACTION_PROCESSOR_REQUIRED_KEY_NOT_SUBSET - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if required keys from GetRequiredKeysResponse is not subset of keys from ISignatureProvider.getAvailableKeys()
TRANSACTION_PROCESSOR_RPC_GET_INFO - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if IRPCProvider.getInfo() thrown exception during processes of TransactionProcessor
TRANSACTION_PROCESSOR_RPC_GET_REQUIRED_KEYS - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if IRPCProvider.getRequiredKeys(GetRequiredKeysRequest) get error.
TRANSACTION_PROCESSOR_RPC_PUSH_TRANSACTION - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if IRPCProvider.pushTransaction(PushTransactionRequest) returns error.
TRANSACTION_PROCESSOR_SERIALIZE_ACTION_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if Action's serialization process get error by calling ISerializationProvider.serialize(AbiEosSerializationObject)
TRANSACTION_PROCESSOR_SERIALIZE_ACTION_WORKED_BUT_EMPTY_RESULT - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if Action's serialization process execute successfully but its result is empty.
TRANSACTION_PROCESSOR_SERIALIZE_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if TransactionProcessor.serialize()
TRANSACTION_PROCESSOR_SERIALIZE_TRANSACTION_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if Transaction's serialization process get error by calling ISerializationProvider.serializeTransaction(String)
TRANSACTION_PROCESSOR_SERIALIZE_TRANSACTION_WORKED_BUT_EMPTY_RESULT - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if Transaction's serialization process execute successfully but its result is empty.
TRANSACTION_PROCESSOR_SIGN_BROADCAST_SERIALIZED_TRANSACTION_EMPTY - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if serialized transaction is empty or has not been populated during process of TransactionProcessor.signAndBroadcast() ()}
TRANSACTION_PROCESSOR_SIGN_BROADCAST_SIGN_EMPTY - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if TransactionProcessor.getSignatures() is empty during process of TransactionProcessor.signAndBroadcast() ()}
TRANSACTION_PROCESSOR_SIGN_CREATE_SIGN_REQUEST_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if error happens during creating signature process of TransactionProcessor.sign()
TRANSACTION_PROCESSOR_SIGN_SIGNATURE_RESPONSE_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
TRANSACTION_PROCESSOR_SIGN_TRANSACTION_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
TRANSACTION_PROCESSOR_SIGN_TRANSACTION_SIGN_EMPTY_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if ISignatureProvider.signTransaction(EosioTransactionSignatureRequest) return no signature.
TRANSACTION_PROCESSOR_SIGN_TRANSACTION_TRANS_EMPTY_ERROR - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if ISignatureProvider.signTransaction(EosioTransactionSignatureRequest) return empty serialized transaction.
TRANSACTION_PROCESSOR_TRANSACTION_HAS_TO_BE_INITIALIZED - Static variable in class one.block.eosiojava.error.ErrorConstants
Error message get thrown if the current transaction inside TransactionProcessor has not been initialized or empty.
TransactionBroadCastEmptySignatureError - Exception in one.block.eosiojava.error.session
Error would be thrown from TransactionProcessor#BroadCast if signatures is empty
TransactionBroadCastEmptySignatureError() - Constructor for exception one.block.eosiojava.error.session.TransactionBroadCastEmptySignatureError
 
TransactionBroadCastEmptySignatureError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionBroadCastEmptySignatureError
 
TransactionBroadCastEmptySignatureError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionBroadCastEmptySignatureError
 
TransactionBroadCastEmptySignatureError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionBroadCastEmptySignatureError
 
TransactionBroadCastError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call broadCast() of TransactionProcessor
TransactionBroadCastError() - Constructor for exception one.block.eosiojava.error.session.TransactionBroadCastError
 
TransactionBroadCastError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionBroadCastError
 
TransactionBroadCastError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionBroadCastError
 
TransactionBroadCastError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionBroadCastError
 
TransactionConfig - Class in one.block.eosiojava.models.rpcProvider
A configuration class that allows the developer to change certain defaults associated with a Transaction.
TransactionConfig() - Constructor for class one.block.eosiojava.models.rpcProvider.TransactionConfig
 
TransactionCreateSignatureRequestAbiError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call getAbi() inside createSignature() of TransactionProcessor
TransactionCreateSignatureRequestAbiError() - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestAbiError
 
TransactionCreateSignatureRequestAbiError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestAbiError
 
TransactionCreateSignatureRequestAbiError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestAbiError
 
TransactionCreateSignatureRequestAbiError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestAbiError
 
TransactionCreateSignatureRequestEmptyAvailableKeyError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call getAvailableKeys() inside createSignatureRequest() of TransactionProcessor.
TransactionCreateSignatureRequestEmptyAvailableKeyError() - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestEmptyAvailableKeyError
 
TransactionCreateSignatureRequestEmptyAvailableKeyError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestEmptyAvailableKeyError
 
TransactionCreateSignatureRequestEmptyAvailableKeyError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestEmptyAvailableKeyError
 
TransactionCreateSignatureRequestEmptyAvailableKeyError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestEmptyAvailableKeyError
 
TransactionCreateSignatureRequestError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call any method related to the signing process inside getSignature() of TransactionProcessor.
TransactionCreateSignatureRequestError() - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestError
 
TransactionCreateSignatureRequestError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestError
 
TransactionCreateSignatureRequestError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestError
 
TransactionCreateSignatureRequestError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestError
 
TransactionCreateSignatureRequestKeyError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call getAvailableKeys() inside createSignatureRequest() of TransactionProcessor
TransactionCreateSignatureRequestKeyError() - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestKeyError
 
TransactionCreateSignatureRequestKeyError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestKeyError
 
TransactionCreateSignatureRequestKeyError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestKeyError
 
TransactionCreateSignatureRequestKeyError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestKeyError
 
TransactionCreateSignatureRequestRequiredKeysEmptyError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call getRequiredKeys() inside createSignatureRequest() of TransactionProcessor.
TransactionCreateSignatureRequestRequiredKeysEmptyError() - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRequiredKeysEmptyError
 
TransactionCreateSignatureRequestRequiredKeysEmptyError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRequiredKeysEmptyError
 
TransactionCreateSignatureRequestRequiredKeysEmptyError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRequiredKeysEmptyError
 
TransactionCreateSignatureRequestRequiredKeysEmptyError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRequiredKeysEmptyError
 
TransactionCreateSignatureRequestRequiredKeysError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call getRequiredKeys() inside createSignatureRequest() of TransactionProcessor
TransactionCreateSignatureRequestRequiredKeysError() - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRequiredKeysError
 
TransactionCreateSignatureRequestRequiredKeysError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRequiredKeysError
 
TransactionCreateSignatureRequestRequiredKeysError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRequiredKeysError
 
TransactionCreateSignatureRequestRequiredKeysError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRequiredKeysError
 
TransactionCreateSignatureRequestRpcError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call any RPC call inside createSignatureRequest() of TransactionProcessor
TransactionCreateSignatureRequestRpcError() - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRpcError
 
TransactionCreateSignatureRequestRpcError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRpcError
 
TransactionCreateSignatureRequestRpcError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRpcError
 
TransactionCreateSignatureRequestRpcError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestRpcError
 
TransactionCreateSignatureRequestSerializationError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call Serialization method inside createSignatureRequest() of TransactionProcessor
TransactionCreateSignatureRequestSerializationError() - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestSerializationError
 
TransactionCreateSignatureRequestSerializationError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestSerializationError
 
TransactionCreateSignatureRequestSerializationError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestSerializationError
 
TransactionCreateSignatureRequestSerializationError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionCreateSignatureRequestSerializationError
 
TransactionGetSignatureDeserializationError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call any deserialization method inside createSignatureRequest() of TransactionProcessor
TransactionGetSignatureDeserializationError() - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureDeserializationError
 
TransactionGetSignatureDeserializationError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureDeserializationError
 
TransactionGetSignatureDeserializationError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureDeserializationError
 
TransactionGetSignatureDeserializationError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureDeserializationError
 
TransactionGetSignatureError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call getSignature() of TransactionProcessor
TransactionGetSignatureError() - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureError
 
TransactionGetSignatureError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureError
 
TransactionGetSignatureError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureError
 
TransactionGetSignatureError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureError
 
TransactionGetSignatureNotAllowModifyTransactionError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call getSignature() inside TransactionProcessor.
TransactionGetSignatureNotAllowModifyTransactionError() - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureNotAllowModifyTransactionError
 
TransactionGetSignatureNotAllowModifyTransactionError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureNotAllowModifyTransactionError
 
TransactionGetSignatureNotAllowModifyTransactionError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureNotAllowModifyTransactionError
 
TransactionGetSignatureNotAllowModifyTransactionError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureNotAllowModifyTransactionError
 
TransactionGetSignatureSigningError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call getSignature() of TransactionProcessor
TransactionGetSignatureSigningError() - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureSigningError
 
TransactionGetSignatureSigningError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureSigningError
 
TransactionGetSignatureSigningError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureSigningError
 
TransactionGetSignatureSigningError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionGetSignatureSigningError
 
TransactionPrepareError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call prepare() of TransactionProcessor
TransactionPrepareError() - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareError
 
TransactionPrepareError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareError
 
TransactionPrepareError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareError
 
TransactionPrepareError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareError
 
TransactionPrepareInputError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call prepare() inside TransactionProcessor.
TransactionPrepareInputError() - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareInputError
 
TransactionPrepareInputError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareInputError
 
TransactionPrepareInputError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareInputError
 
TransactionPrepareInputError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareInputError
 
TransactionPrepareRpcError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting make any RPC calls inside prepare() of TransactionProcessor
TransactionPrepareRpcError() - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareRpcError
 
TransactionPrepareRpcError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareRpcError
 
TransactionPrepareRpcError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareRpcError
 
TransactionPrepareRpcError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionPrepareRpcError
 
TransactionProcessor - Class in one.block.eosiojava.session
Wrapper class for an EOS Transaction.
TransactionProcessor(ISerializationProvider, IRPCProvider, IABIProvider, ISignatureProvider) - Constructor for class one.block.eosiojava.session.TransactionProcessor
Constructor with all provider references from TransactionSession
TransactionProcessor(ISerializationProvider, IRPCProvider, IABIProvider, ISignatureProvider, Transaction) - Constructor for class one.block.eosiojava.session.TransactionProcessor
Constructor with all provider references from TransactionSession and preset Transaction
TransactionProcessorConstructorInputError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to initialize TransactionProcessor
TransactionProcessorConstructorInputError() - Constructor for exception one.block.eosiojava.error.session.TransactionProcessorConstructorInputError
 
TransactionProcessorConstructorInputError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionProcessorConstructorInputError
 
TransactionProcessorConstructorInputError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionProcessorConstructorInputError
 
TransactionProcessorConstructorInputError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionProcessorConstructorInputError
 
TransactionProcessorError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call any method of TransactionProcessor
TransactionProcessorError() - Constructor for exception one.block.eosiojava.error.session.TransactionProcessorError
 
TransactionProcessorError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionProcessorError
 
TransactionProcessorError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionProcessorError
 
TransactionProcessorError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionProcessorError
 
TransactionPushTransactionError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call pushTransaction() of TransactionProcessor
TransactionPushTransactionError() - Constructor for exception one.block.eosiojava.error.session.TransactionPushTransactionError
 
TransactionPushTransactionError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionPushTransactionError
 
TransactionPushTransactionError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionPushTransactionError
 
TransactionPushTransactionError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionPushTransactionError
 
TransactionSerializeError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call serialize() of TransactionProcessor
TransactionSerializeError() - Constructor for exception one.block.eosiojava.error.session.TransactionSerializeError
 
TransactionSerializeError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionSerializeError
 
TransactionSerializeError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionSerializeError
 
TransactionSerializeError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionSerializeError
 
TransactionSession - Class in one.block.eosiojava.session
Transaction Session class has a factory role for creating TransactionProcessor object from providers instances
TransactionSession(ISerializationProvider, IRPCProvider, IABIProvider, ISignatureProvider) - Constructor for class one.block.eosiojava.session.TransactionSession
Initialize TransactionSession object which acts like a factory to create TransactionProcessor object from providers instances.
TransactionSignAndBroadCastError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call signAndBroadCast() of TransactionProcessor
TransactionSignAndBroadCastError() - Constructor for exception one.block.eosiojava.error.session.TransactionSignAndBroadCastError
 
TransactionSignAndBroadCastError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionSignAndBroadCastError
 
TransactionSignAndBroadCastError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionSignAndBroadCastError
 
TransactionSignAndBroadCastError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionSignAndBroadCastError
 
TransactionSignError - Exception in one.block.eosiojava.error.session
Error class is used when there is an exception while attempting to call sign() of TransactionProcessor
TransactionSignError() - Constructor for exception one.block.eosiojava.error.session.TransactionSignError
 
TransactionSignError(String) - Constructor for exception one.block.eosiojava.error.session.TransactionSignError
 
TransactionSignError(String, Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionSignError
 
TransactionSignError(Exception) - Constructor for exception one.block.eosiojava.error.session.TransactionSignError
 

U

UNSUPPORTED_ALGORITHM - Static variable in class one.block.eosiojava.error.ErrorConstants
The algorithm used to generate the object is unsupported.
Utils - Class in one.block.eosiojava.utilities
This class provides generic utility methods

V

valueOf(String) - Static method in enum one.block.eosiojava.enums.AlgorithmEmployed
Returns the enum constant of this type with the specified name.
values() - Static method in enum one.block.eosiojava.enums.AlgorithmEmployed
Returns an array containing the constants of this enum type, in the order they are declared.
A B C D E G H I K L M N O P R S T U V 
Skip navigation links