TokenUpdateBidWhitelistTransactionParams
txTypeTokenTransactionType (string)
Must be "token:bid:whitelist"
Possible values: [token:bid:whitelist
]
tokenAddressstringrequired
The address of the token contract.
senderstringrequired
The address (public key) of the sender.
senderPrivateKeystring
The private key of the sender. It is NOT recommended to use this field. Please use the sender
field instead. Use this field at your own risk and only if you know what you are doing and do not have access to mina-signer or wallet to get the signature.
nonceint64
Optional. The nonce for the transaction.
memostring
Optional. A memo for the transaction.
developerFeedouble
Optional. The developer fee for the transaction.
bidAddressstringrequired
The address of the bid to update whitelist for.
whitelist objectrequired
Optional. List of whitelisted addresses with optional amounts, or a string.
- MOD1
- MOD2
Array [
addressstringrequired
The whitelisted address.
amountdouble
Optional. The amount allowed to bid.
]
string
TokenUpdateBidWhitelistTransactionParams
{
"txType": "token:bid:whitelist",
"tokenAddress": "string",
"sender": "string",
"senderPrivateKey": "string",
"nonce": 0,
"memo": "string",
"developerFee": 0,
"bidAddress": "string",
"whitelist": [
{
"address": "string",
"amount": 0
}
]
}