Values.TokenIdentifierSourceThe container for the identifier for the token including the unique token ID and its blockchain network. Only the native tokens BTC and ETH, and the ERC-20, ERC-721, and ERC 1155 token standards are supported.
type nonrec t = {network : QueryNetwork.t;The blockchain network of the token.
*)contractAddress : ChainAddress.t option;This is the token's contract address.
*)tokenId : QueryTokenId.t option;The unique identifier of the token. For native tokens, use the 3 character abbreviation that best matches your token. For example, btc for Bitcoin, eth for Ether, etc. For all other token types you must specify the tokenId in the 64 character hexadecimal tokenid format.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of ChainAddress.t ]) list ]