Network
getAbciInfo
- Get ABCI information This method is used to get ABCI information.
Parameters:
<string>- a wallet address<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<AbciInfoResult>- An instance ofAbciInfoResultcontaining the response and error.
Example:
const data = "0x12345d";
// Get ABCI information
const acbiInfo = await Network.getAbciInfo(data);getAbciNoce
- Get ABCI Noce This method is used to get ABCI Noce.
Parameters:
<string>- a wallet address<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<AbciNoceResult>- An instance ofAbciNoceResultcontaining the response and error.
Example:
getAssetToken
- Get information of given type of asset token This method is used to get information of given type of asset token
Parameters:
<string>- asset code<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<AssetTokenDataResult>- An instance ofAssetTokenDataResultcontaining the response and error.
Example:
getBlock
- Get datails of given block This method is used to get details of given block.
Parameters:
<number>- block Height<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<BlockDetailsDataResult>- An instance ofBlockDetailsDataResultcontaining the response and error.
Example:
getDelegateInfo
- Get the delegation information This method is used to get the delegation information.
Parameters:
<string>- public key<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<DelegateInfoDataResult>- An instance ofDelegateInfoDataResultcontaining the response and error.
Example:
getHashSwap
- Get transaction details This method is used to get details of transaction with given hash
Parameters:
<string>- transaction hash<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<HashSwapDataResult>- An instance ofHashSwapDataResultcontaining the response and error.
Example:
getIssuedRecords
- Get information of issued records for given public key This method is used to get information of issued records for given public key
Parameters:
<string>- public key<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<IssuedRecordDataResult>- An instance ofIssuedRecordDataResultcontaining the response and error.
Example:
getOwnedSids
- Get Sids owned by given address This method is used to get Sids owned by given address
Parameters:
<string>- wallet address<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<OwnedSidsDataResult>- An instance ofOwnedSidsDataResultcontaining the response and error.
Example:
getOwnerMemo
- Get the owner memo by given UTXO sid This method is used to get owner memo by given UTXO sid
Parameters:
<number>- UTXO sid<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<OwnerMemoDataResult>- An instance ofOwnerMemoDataResultcontaining the response and error.
Example:
getStateCommitment
- Returns state commitment An important property of a Findora ledger is the ability to authenticate transactions. Users can authenticate transactions against a small tag called the state commitment. The state commitment is a commitment to the current state of the ledger. The state commitment response is a tuple containing the state commitment and the state commitment version.
Parameters:
<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<StateCommitmentDataResult>- An instance ofStateCommitmentDataResultcontaining the response and error.
Example:
getTransactionStatus
- Returns transaction status Using the transaction handle, user can fetch the status of the transaction from the query server.
Parameters:
<string>- transaction handle (hash)<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<TransactionStatusDataResult>- An instance ofTransactionStatusDataResultcontaining the response and error.
Example:
getTransactionDetails
- Returns transaction details Using the transaction handle, user can fetch the details of the transaction from the query server.
Parameters:
<string>- transaction handle (hash)<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<TxDetailsDataResult>- An instance ofTxDetailsDataResultcontaining the response and error.
Example:
getTxList
- Get a list of transactions for given wallet address This method is used to get a list of transactions for given wallet address
Parameters:
<string>- wallet address<"to"|"from">- transaction type. it can only be "to" or "from"<number>- pagination. Default is 1.<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<TxListDataResult>- An instance ofTxListDataResultcontaining the response and error.
Example:
getUtxo
- Get UTXO ledger for given utxo sid This method is used to get UTXO ledger for given UTXO sid
Parameters:
<number>- UTXO SID<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<UtxoDataResult>- An instance ofUtxoDataResultcontaining the response and error.
Example:
getValidatorList
- Get validator list This method is used to get the list of validators.
Parameters:
<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<ValidatorListDataResult>- An instance ofValidatorListDataResultcontaining the response and error.
Example:
sendRpcCall
- Send RPC call This method is used to send RPC call.
Parameters:
<string>- RPC url<{[key: string]: any}>- payload<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<T>- The response object from RPC call.
Example:
submitEvmTx
- Submit EVM transaction This method is used to submit a EVM transaction.
Parameters:
<string>- transaction hash<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<SubmitEvmTxResult>- An instance ofSubmitEvmTxResultcontaining the response and error.
Example:
submitTransaction
- Submit transation This method is used to submit a transaction
Parameters:
<TransactionData>- (optinal) transaction data<NetworkAxiosConfig>- (optinal) network config
Results:
Promise<SubmitTransactionDataResult>- An instance ofSubmitTransactionDataResultcontaining the response and error.
Example:
Last updated
Was this helpful?