JSON-RPC API
dApps can get account status, send transactions, and call other functions via zkLink API.
The zkLink API follows the JSON-RPC standard and is accessed via POST.
API OVERVIEW
getSupportChains: get the configuration of all supported chains.
getSupportTokens: get the data of all tokens with on-chain contract addresses.
getLatestBlockNumber: get the latest block height info.
getTokenReserve: get the withdrawable limit of a token on a certain L1 chain.
JSON-RPC API METHODS
getSupportChains
Get the configuration of all supported chains.
Parameters
None
ChainResp
getSupportTokens
Get the data of all tokens with on-chain contract addresses.
Parameters
None
It returns a HashMap<TokenId,TokenResp>
, which has a unique token id and is used for all token-related queries in the RPC service. Symbols are used only for display on the UI and do not promise uniqueness.
TokenResp
ChainTokenResp
The decimal is the accuracy of the token on L1, which is not always 18 (6 for USDC and 18 for ZKL), and varies on different chains for the same token (6 for USDC on Ethereum and 18 for USDC on BSC).
When a user deposits to zkLink from connected networks, the front-end needs to calculate the amount required for calling the contract according to the accuracy:
getLatestBlockNumber
Get the latest block height info.
Parameters
None
BlockNumberResp
getBlockByNumber
Get the block info by block height.
Parameters
blockNumber
: the block height, and returns the latest block height if nullincludeTx
: whether contains transaction details: returns transaction hash if false. only successful transactions will be included in a block. callgetTransactionByHash
to query the failed transactions.includeUpdate
: whether contains the state change by transactions; valid only whenincludeTx
is true.
BlockResp
BlockTxResp
StateUpdateResp
The success of transaction execution will lead to the change of the state tree:
AccountCreate: create a new account in the state tree
AccountChangePubkeyUpdate: change in pubkey and nonce
BalanceUpdate: change in account balance and nonce
OrderUpdate: change in account slot
AccountCreate
Example:
Transactions that may generate AccountCreate
include:
Deposit
Transfer
AccountChangePubkeyUpdate
Example:
only ChangePubKey
will generate AccountChangePubkeyUpdate
BalanceUpdate
Example:
All ZkLinkTx
will generate BalanceUpdate
OrderUpdate
TidyOrder
Example:
Only OrderMatching
will generate OrderUpdate
getPendingBlock
Get info of transactions waiting to be batched.
Parameters
transaction execution time, the timestamp in the return can only be bigger than it.
includeTx
: whether to include transaction details. False: return transaction hash only. Only successful transactions will be batched in the block. CallgetTransactionByHash
to query failed transaction details.includeUpdate
: whether to include the state change by the transaction. Valid only whenincludeTx
is true.
getBlockOnChainByNumber
Get transaction information in a block executed on L1 blockchains. Every block will be submitted to and executed on every L1 chain.
Parameters
chain_id
BlockOnChainResp
OnChainResp
Noted that since blocks are committed to and executed on L1 blockchains in batches, the on-chain data of blocks in the same batch is the same. For example, when blocks [4906, 4910] are in the same batch, their on-chain transaction info is the same.
Commitment and batching are asynchronous. For example, when the current block height is 1000, the committed block height can be 980, and the verified block height can be 950. The API caller should query the on-chain infor by the committed and verified block height via getLatestBlockNumber
. For example, when the latest verified block height is 950, the return of the on-chain block info that is after 950 must be null.
getAccount
Get account info by address or account id.
Parameters
Address|AccountID - Address(20Bytes or 32Bytes) or integer account id.
AccountInfoResp
pubKeyHash
being 0x0000000000000000000000000000000000000000
means unactivated account.
getAccountBalances
Get the balance info of an account.
Parameters:
accountId
: account idsubAccountId
: optional, the id of the subaccount; null if the query requests the balance of all subaccounts.
getAccountOrderSlots
Get the order slot of an account.
Parameters
accountId
: account idsubAccountId
: optional, the id of the subaccount; null if the query requests the balance of all subaccounts.
getTokenReserve
Get the withdrawable limit of a token on a certain L1 chain. There are 3 cases:
Parameters
tokenId
: tokenIdmapping
: whether to query mapping, valid only when tokenId corresponds to USD stable.
getAccountSnapshot
In zkLink v0.4.0, transactions are executed before being batched, thus the APIs that request account states may not return the states in the latest block. The related APIs include:
getAccount
getAccountBalances
getAccountOrderSlots
getTokenReserve
getAccountSnapshot is introduced to request the account states of a certain block height, including the basic info, balance info, and order slot info.
Parameters:
accountAddress
oraccountId
subAccountId
: optional, the id of the subaccount; null if the query requests the balance of all subaccounts.blockNumber: optional, null to return the latest block snapshot
AccountSnapshotResp
getTransactionByHash
Get transaction info.
Parameters:
txHash
includeUpdate
: whether to include the state change by the transaction
TxResp
TxReceiptResp
getAccountTransactionHistory
Get account history in descending order of the transaction id in the database. Current only Deposit
, Withdraw
, and Transfer
are supported.
Parameters
Deposit
,Withdraw
orTransfer
account address
the page index, starting from 0
the page size
Page<ZkLinkTxHistory>
ZkLinkHistory
Deposit: returns the transaction history of which the account address equals to_address;
Withdraw: returns the transaction history of which the account address equals from_address;
Transfer: returns the transaction history of which the account address equals either to_address or from_address.
getWithdrawTxs
Get transaction info of withdraw transactions.
Parameters:
lastTxTimestamp
: ISO 8601 standard with date, time, and time zone;maxTxs
: the max value of the number of Withdraw in the return.
FastWithdrawTxResp
zkLink will scan the maxTxs
number of executed withdraw transactions, and returns the fast_withdraw transactions among which; thus the number of returns might be less than maxTxs
, even be 0.
In the first scan, lastTxTimestamp
can be set as 0 to scan from the beginning. Then the executedTimestamp
of the last record can be used as the lastTxTimestamp
of the next scan.
getEthProperty
Get all the information about the Ethereum property.
GateWayInfo
TokenInfo
sendTransaction
Submit L2 transaction and return transaction hash.
Parameters:
ZkLinkTx
: L2 transactionLayer1Signature: layer1 signature with type Option<TxLayer1Signature>; required for Layer2 transactions apart from
ChangePubKey
orOrderMatching
.submitterSignature:
Option<ZkLinkSignature>
, required only when the transaction involves subaccounts (except #0 subaccount);submitterSignature
is a zk signature totx
hash.
TxLayer1Signature
L1 signatures apply EIP-191 specification with zkLink Eth sig message
.
Examples:
ZkLinkSignature
Signatures for L2 transactions use zkLink Encode
.
Example:
version: 7df6cd1
Last updated