Type: Withdrawals
WithdrawableToken
This type represents a withdrawable token. It is composed by type WithdrawableChain
.
type WithdrawableToken = {
tokenSymbol: string;
networks?: WithdrawableChain[];
};
GroupedBalances
This type represents a balance returned by the version 2 of the withdrawableTokens
method.
export type GroupedBalances = {
[tokenSymbol: string]: TokenBalance;
};