getTokenSymbolAndAdmin
Function: getTokenSymbolAndAdmin()
function getTokenSymbolAndAdmin(params: {
bidAddress: PublicKey;
chain: blockchain;
offerAddress: PublicKey;
to: PublicKey;
tokenAddress: PublicKey;
txType: TokenTransactionType;
}): Promise<{
adminAddress: PublicKey;
adminContractAddress: PublicKey;
isAdvanced: boolean;
isToNewAccount: boolean;
symbol: string;
verificationKeyHashes: string[];
}>
Defined in: packages/abi/src/token/build.ts:714
Parameters
params
bidAddress
PublicKey
chain
offerAddress
PublicKey
to
PublicKey
tokenAddress
PublicKey
txType
TokenTransactionType
Returns
Promise
<{
adminAddress
: PublicKey
;
adminContractAddress
: PublicKey
;
isAdvanced
: boolean
;
isToNewAccount
: boolean
;
symbol
: string
;
verificationKeyHashes
: string
[];
}>
Updated 10 days ago