Blockchain
GetChains returns a list of chains (enabled only by default, or all if all=true)
all indicates whether to return all chains including disabled ones If false or omitted, only enabled chains are returned
A successful response.
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
GetTokensByChainIDs returns tokens for a specific set of chains (enabled only by default, or all if all=true)
chain_ids is the list of chain IDs to get tokens for
all indicates whether to return all tokens including disabled ones If false or omitted, only enabled tokens are returned
mode filters tokens by feature category. Supported values: "dex". If omitted, no category filter is applied.
A successful response.
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
GetChainTokens returns all token/chains relations (enabled only by default, or all if all=true)
all indicates whether to return all chain-tokens including disabled ones If false or omitted, only enabled chain-tokens are returned
mode filters chain-tokens by feature category. Supported values: "dex". If omitted, no category filter is applied.
A successful response.
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
chain_id is the blockchain network identifier (e.g., "1" for Ethereum)
A successful response.
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
GetChainTokenRelation returns a single chain-token relation
chain_id is the unique identifier of the chain
token_symbol is the ticker symbol of the token
A successful response.
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
GetTokens returns a list of tokens (enabled only by default, or all if all=true)
all indicates whether to return all tokens including disabled ones If false or omitted, only enabled tokens are returned
A successful response.
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
symbol is the ticker symbol of the token
A successful response.
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
ExecuteTransaction signs and broadcasts a batch of transactions on behalf of the caller
Send 'Authorization: APIKey ' to authenticate with a API key.
ExecuteTransactionRequest contains the ordered list of transactions to execute.
A successful response.
ExecuteTransactionResponse contains the transaction hashes in the same order as the request. Failed transactions are represented as "0x00".
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
GetInternalWallets returns the internal wallets owned by the caller
Send 'Authorization: APIKey ' to authenticate with a API key.
A successful response.
GetInternalWalletsResponse contains the caller's internal wallets.
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
SendBalanceFromInternalWallet sends a balance out of the caller's internal wallet
Send 'Authorization: APIKey ' to authenticate with a API key.
SendBalanceFromInternalWalletRequest asks to send a balance out of the caller's internal wallet.
A successful response.
SendBalanceFromInternalWalletResponse contains the broadcast transaction hash.
An unexpected error response. details[0] is always an AppError, see #/components/schemas/AppError
Last updated