Token Drop
Learn how to interact with your Token Drop contract in the SDK.
Create a Token Drop Contract
- React
- Javascript
- Python
- Go
const sdk = useSDK();
const contractAddress = await sdk.deployer.deployTokenDrop({
name: "My Token Drop",
primary_sale_recipient: "your-address",
});
const contractAddress = await sdk.deployer.deployTokenDrop({
name: "My Token Drop",
primary_sale_recipient: "your-address",
});
Python SDK support for deployTokenDrop is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for deployTokenDrop is coming soon.
Want this feature sooner? Let us know in Discord!
Getting the contract in your application
To start using your Token Drop contract inside your application, you need to use its contract address. You can get the contract address from the dashboard.
- React
- Javascript
- Python
- Go
import { useTokenDrop } from '@thirdweb-dev/react'
export default function Component() {
const tokenDrop = useTokenDrop("<YOUR-CONTRACT-ADDRESS>")
// Now you can use the token drop contract in the rest of the component
}
import { ThirdwebSDK } from "@thirdweb-dev/sdk";
const sdk = new ThirdwebSDK("{{chainName}}");
const contract = sdk.getTokenDrop("{{contract_address}}");
Python SDK support for initializing the SDK is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for initializing the SDK is coming soon.
Want this feature sooner? Let us know in Discord!
Setting Claim Phases
- React
- Javascript
- Python
- Go
const presaleStartTime = new Date();
const publicSaleStartTime = new Date(Date.now() + 60 * 60 * 24 * 1000);
const claimConditions = [
{
startTime: presaleStartTime, // start the presale now
maxQuantity: 3117.42, // limit how many tokens are released in this presale
price: 0.001, // presale price per token
snapshot: ['0x...', '0x...'], // limit claiming to only certain addresses
},
{
startTime: publicSaleStartTime, // 24h after presale, start public sale
price: 0.008, // public sale price per token
}
]);
await contract.claimConditions.set(claimConditions);
const presaleStartTime = new Date();
const publicSaleStartTime = new Date(Date.now() + 60 * 60 * 24 * 1000);
const claimConditions = [
{
startTime: presaleStartTime, // start the presale now
maxQuantity: 3117.42, // limit how many tokens are released in this presale
price: 0.001, // presale price per token
snapshot: ['0x...', '0x...'], // limit claiming to only certain addresses
},
{
startTime: publicSaleStartTime, // 24h after presale, start public sale
price: 0.008, // public sale price per token
}
]);
await contract.claimConditions.set(claimConditions);
Python SDK support for claimConditions is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for claimConditions is coming soon.
Want this feature sooner? Let us know in Discord!
Claiming Tokens
Your users can claim tokens if their wallet address meets the criteria included in the current claim phase.
- React
- Javascript
- Python
- Go
const address = "{{wallet_address}}"; // address of the wallet you want to claim the NFTs
const quantity = 42.69; // how many tokens you want to claim
const tx = await contract.claimTo(address, quantity);
const receipt = tx.receipt; // the transaction receipt
const address = "{{wallet_address}}"; // address of the wallet you want to claim the NFTs
const quantity = 42.69; // how many tokens you want to claim
const tx = await contract.claimTo(address, quantity);
const receipt = tx.receipt; // the transaction receipt
Python SDK support for claimTo is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for claimTo is coming soon.
Want this feature sooner? Let us know in Discord!
Token Metadata
Get the metadata about the token itself, such as the name, symbol, and decimals.
- React
- Javascript
- Python
- Go
const token = await contract.token.get();
const token = await contract.token.get();
Python SDK support for get is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for get is coming soon.
Want this feature sooner? Let us know in Discord!
You can get the total supply of the token too:
- React
- Javascript
- Python
- Go
const balance = await contract.token.totalSupply();
const balance = await contract.token.totalSupply();
Python SDK support for totalSupply is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for totalSupply is coming soon.
Want this feature sooner? Let us know in Discord!
Token Balance
Balance of the connected wallet
- React
- Javascript
- Python
- Go
const balance = await contract.token.balance();
const balance = await contract.token.balance();
Python SDK support for balance is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for balance is coming soon.
Want this feature sooner? Let us know in Discord!
Balance of a specified wallet
- React
- Javascript
- Python
- Go
const { data: balance, isLoading, error } = useTokenBalance(<YourTokenContractInstance>);
// Address of the wallet to check token balance
const walletAddress = "{{wallet_address}}";
const balance = await contract.token.balanceOf(walletAddress);
Python SDK support for balanceOf is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for balanceOf is coming soon.
Want this feature sooner? Let us know in Discord!
Token Allowance
Allowance refers to how many tokens another address is allowed to spend from your wallet.
For example, our Marketplace contract asks you permission to increase your allowance when you make a bid on an auction listing.
Get allowance for the connected wallet
Get the number of tokens that another wallet can spend on behalf of the connected wallet.
- React
- Javascript
- Python
- Go
// Address of the wallet to check token allowance
const spenderAddress = "0x...";
const allowance = await contract.token.allowance(spenderAddress);
// Address of the wallet to check token allowance
const spenderAddress = "0x...";
const allowance = await contract.token.allowance(spenderAddress);
Python SDK support for allowance is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for allowance is coming soon.
Want this feature sooner? Let us know in Discord!
Get allowance for a specified wallet
Get the number of tokens that another wallet can spend on behalf of the specified wallet.
- React
- Javascript
- Python
- Go
// Address of the wallet who owns the funds
const owner = "{{wallet_address}}";
// Address of the wallet to check token allowance
const spender = "0x...";
const allowance = await contract.token.allowanceOf(owner, spender);
// Address of the wallet who owns the funds
const owner = "{{wallet_address}}";
// Address of the wallet to check token allowance
const spender = "0x...";
const allowance = await contract.token.allowanceOf(owner, spender);
Python SDK support for allowanceOf is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for allowanceOf is coming soon.
Want this feature sooner? Let us know in Discord!
Set Allowance
Specify how many tokens another wallet is allowed to spend on behalf of the connected wallet.
- React
- Javascript
- Python
- Go
// Address of the wallet to allow transfers from
const spenderAddress = "0x...";
// The number of tokens to give as allowance
const amount = 100
await contract.token.setAllowance(spenderAddress, amount);
// Address of the wallet to allow transfers from
const spenderAddress = "0x...";
// The number of tokens to give as allowance
const amount = 100
await contract.token.setAllowance(spenderAddress, amount);
Python SDK support for setAllowance is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for setAllowance is coming soon.
Want this feature sooner? Let us know in Discord!
Transfer Tokens
You can transfer tokens from one wallet to another or send tokens to a smart contract address.
Transfer from the connected wallet
- React
- Javascript
- Python
- Go
// Address of the wallet you want to send the tokens to
const toAddress = "0x...";
// The amount of tokens you want to send
const amount = 0.1;
await contract.token.transfer(toAddress, amount);
// Address of the wallet you want to send the tokens to
const toAddress = "0x...";
// The amount of tokens you want to send
const amount = 0.1;
await contract.token.transfer(toAddress, amount);
Python SDK support for transfer is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for transfer is coming soon.
Want this feature sooner? Let us know in Discord!
Transfer from the connected wallet in batch
- React
- Javascript
- Python
- Go
// Data of the tokens you want to mint
const data = [
{
toAddress: "{{wallet_address}}", // Address to mint tokens to
amount: 100, // How many tokens to mint to specified address
},
{
toAddress: "0x...",
amount: 100,
}
]
await contract.token.transferBatch(data);
// Data of the tokens you want to mint
const data = [
{
toAddress: "{{wallet_address}}", // Address to mint tokens to
amount: 100, // How many tokens to mint to specified address
},
{
toAddress: "0x...",
amount: 100,
}
]
await contract.token.transferBatch(data);
Python SDK support for transferBatch is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for transferBatch is coming soon.
Want this feature sooner? Let us know in Discord!
Transfer from a specified wallet
- React
- Javascript
- Python
- Go
// Address of the wallet sending the tokens
const fromAddress = "{{wallet_address}}";
// Address of the wallet you want to send the tokens to
const toAddress = "0x...";
// The number of tokens you want to send
const amount = 1.2
// Note that the connected wallet must have approval to transfer the tokens of the fromAddress
await contract.token.transferFrom(fromAddress, toAddress, amount);
// Address of the wallet sending the tokens
const fromAddress = "{{wallet_address}}";
// Address of the wallet you want to send the tokens to
const toAddress = "0x...";
// The number of tokens you want to send
const amount = 1.2
// Note that the connected wallet must have approval to transfer the tokens of the fromAddress
await contract.token.transferFrom(fromAddress, toAddress, amount);
Python SDK support for transferFrom is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for transferFrom is coming soon.
Want this feature sooner? Let us know in Discord!
Burning Tokens
Burning tokens takes a specified amount of tokens out of the circulating supply.
Burn from the connected wallet
Burn from a specified wallet
- React
- Javascript
- Python
- Go
// Address of the wallet sending the tokens
const holderAddress = "{{wallet_address}}";
// The amount of this token you want to burn
const amount = 1.2;
await contract.burnFrom(holderAddress, amount);
// Address of the wallet sending the tokens
const holderAddress = "{{wallet_address}}";
// The amount of this token you want to burn
const amount = 1.2;
await contract.burnFrom(holderAddress, amount);
Python SDK support for burnFrom is coming soon.
Want this feature sooner? Let us know in Discord!
Go SDK support for burnFrom is coming soon.
Want this feature sooner? Let us know in Discord!