TokenUpdateBidWhitelistTransactionParams
Type Alias: TokenUpdateBidWhitelistTransactionParams
Properties overview
type TokenUpdateBidWhitelistTransactionParams = DeployedTokenTransactionBaseParams & {
bidAddress: string;
txType: "token:bid:whitelist";
whitelist: Whitelist;
};
Defined in: packages/api/src/client/types.gen.ts:709
Type declaration
bidAddress
bidAddress: string;
The address of the bid to update whitelist for.
txType?
optional txType: "token:bid:whitelist";
Must be "token:bid:whitelist"
whitelist
whitelist: Whitelist;
Either a list of whitelisted addresses with optional amounts, or a string representing a whitelist contract address
Updated 10 days ago