TokenUpdateOfferWhitelistTransactionParams
Type Alias: TokenUpdateOfferWhitelistTransactionParams
Properties overview
type TokenUpdateOfferWhitelistTransactionParams = DeployedTokenTransactionBaseParams & {
offerAddress: string;
txType: "token:offer:whitelist";
whitelist: Whitelist;
};
Defined in: packages/api/src/client/types.gen.ts:729
Type declaration
offerAddress
offerAddress: string;
The address of the offer to update whitelist for.
txType?
optional txType: "token:offer:whitelist";
Must be "token:offer: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