Type: Deposits
DepositAddress
This type represents a deposit address.
type DepositAddress = {
tokenSymbol: string;
address: string;
network: string;
};
DepositableToken
This type represents a depositable token.
type DepositableToken = {
tokenSymbol: string;
networks?: MarketNetwork[];
};