Prepares unsigned transactions for the claimTokens method.
Example:
curl --request POST \
--url https://api.sandbox.brickken.com/prepare-transactions/claimTokens \
--header 'Content-Type: application/json' \
--header 'x-api-key: YOUR_API_KEY' \
--data '{
"method": "claimTokens",
"signerAddress": "0xYourAddress",
"chainId": "aa36a7",
"investorAddress": "0xInvestorAddress",
"tokenSymbol": "TOKEN",
"investorEmail": "[email protected]",
"paymentTokenSymbol": "USDC"
}'
/prepare-transactions with method=claimTokens.
| Parameter | Type | Required | Description |
|---|---|---|---|
signerAddress | string | Yes | Address that will sign the transaction |
chainId | string | Yes | Blockchain network identifier (hex format) |
method | string | Yes | Transaction method type (should be “claimTokens”) |
tokenSymbol | string | Yes | Symbol of the token to claim |
investorAddress | string | Yes | Address of the investor claiming tokens |
investorEmail | string | Yes | Email of the investor |
paymentTokenSymbol | string | Yes | Symbol of the payment token used in the STO |