Basic Types
Basic types
Basic structures
ChainId
The chain id defined by ZkLink, the type is u8
, Value range: [0, 31]
AccountId
The account id defined by ZkLink, the type is u32
, Value range: 0 or [2, 2^24 - 1]
SubAccountId
The subaccount id defined by ZkLink, the type isu8
, Value range: [0, 31]
TokenId
The type isu32
, different token contract addresses correspond to different token ids. There are many stablecoins, for example, USDC or BUSD are equivalent to USD. In order to aggregate the liquidity of these stablecoins, zkLink created a virtual USD token on L3. Users deposite USDC or BUSD at L1 and can choose to receive the same amount of USD at L3. Conversely, when withdrawing USD, users can choose to withdraw an equivalent amount of USDC or BUSD to L1.
SlotId
The id of slot in Order, the type is u32
, Value range: [0, 2^16 - 1]
PairId
The trading pair ID of the pertetual contract, the type is u16
. The PairId is defined by decentralized exchange, not defined by ZkLink, Value range: [0, 8]
MarginId
The margin ID of the pertetual contract, the type is u8
, Value range: [0, 3]
Nonce
The nonce type in transaction and account, the type is u32
, Value range: [0, 2^32 - 1]
Price
The price in transaction, the type is BigUint
, Value range: [0, (2^120 - 1) / 10^18 - 1]
ChainType
0: EVM
1: StarkNet
TxHash
Transaction Hash, it is the unique address of a transaction that acts as a record or proof that the transaction has taken place. It is the hexadecimal serialized string of [u8; 32]
starting with 0x
, for example:
0x7264f1d95b5339f77f2b24939bada1cbca183c77110e514159bbcfad3aa303d2
H256
the type is string, it is the hexadecimal serialized string of [u8; 32]
starting with 0x
, for example:
0x052fdba72bbb6fcc10940fc22dc76e459dda32604a17a920b8f2d2d0f0caff8f
PubKeyHash
The public key hash of Zklink layer side, it is the hexadecimal serialized string of [u8; 20]
, for example:
0x3cfdecf8eba46d5411bdc29365f5536f024c195f
ZkLinkSignature
The L3 transaction signature.
For example:
TxLayer1Signature
The transaction L1 signature, for the ethereum, there are two types signatures EIP-191 and EIP1271.
where the type
can be EthereumSignature
, EIP1271Signature
and StarkSignature
:
The ethereum ECDSA signature, for example:
Last updated