Edition Drop
When using the Edition Drop smart contract, additional top-level functionality is available to use.
To access the top-level functionality, use the get_edition_drop
method when creating the contract instance:
contract = sdk.get_edition_drop(
"{{contract_address}}",
)
The extensions that the edition drop contract supports are listed below.
- ERC1155
- ERC1155Enumerable
- ERC1155LazyMintable
- ERC1155ClaimPhases
- Royalty
- PlatformFee
- PrimarySale
- Permissions
- ContractMetadata
- Ownable
- Gasless
claim
Claim a specified number of tokens to the connected wallet.
token_id = 0
quantity = 1
tx = contract.claim(token_id, quantity)
receipt = tx.receipt
claimed_token_id = tx.id
claimed_nft = tx.data()
Configuration
claim_to
The same as claim
, but allows specifying the recipient
address rather than using the connected wallet.
address = "0x7fDae677aA6f94Edff9872C4b91D26407709c790"
token_id = 0
quantity = 1
tx = contract.claim_to(address, token_id, quantity)
receipt = tx.receipt
claimed_token_id = tx.id
claimed_nft = tx.data()
Configuration
Configuration
create_batch
Lazy mint a new batch of NFTs into the smart contract.
By default, the NFT metadata is uploaded and pinned to IPFS before minting.
You can override this default behavior by providing a string
that points to valid metadata instead of objects.
The metadata must conform to the metadata standards.
from thirdweb.types.nft import NFTMetadataInput, EditionMetadataInput
# Note that you can customize this metadata however you like
metadatas = [
EditionMetadataInput(
NFTMetadataInput.from_json({
"name": "Cool NFT",
"description": "This is a cool NFT",
"image": open("path/to/file.jpg", "rb"),
})
),
EditionMetadataInput(
NFTMetadataInput.from_json({
"name": "Cooler NFT",
"description": "This is a cooler NFT",
"image": open("path/to/file.jpg", "rb"),
})
)
]
txs = contract.create_batch(metadata)
first_token_id = txs[0].id
first_nft = txs[0].data()
Alternatively, you can provide a string
that points to valid metadata instead of objects.
metadata_one = EditionMetadataInput("ipfs://Qm...") # IPFS URI
metadata_two = EditionMetadataInput("https://my-nft-metadata.json") # Some other URL
txs = contract.create_batch([metadata_one, metadata_two])