Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit a887741

Browse files
add import
1 parent 4cfbcf8 commit a887741

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

thirdweb/contracts/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
from .marketplace import Marketplace
55
from .nft_drop import NFTDrop
66
from .edition_drop import EditionDrop
7+
from .token_drop import TokenDrop
78
from .multiwrap import Multiwrap
89
from .maps import *

thirdweb/contracts/token_drop.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from typing import Any, Final, List, Optional
22
from thirdweb.abi import DropERC20
3-
from thirdweb.abi.drop_erc20 import IDropAllowlistProof
43
from thirdweb.constants.role import Role
54
from thirdweb.core.classes.contract_events import ContractEvents
65
from thirdweb.core.classes.contract_metadata import ContractMetadata
@@ -12,15 +11,10 @@
1211
from thirdweb.core.classes.erc_20_standard import ERC20Standard
1312
from thirdweb.core.classes.ipfs_storage import IpfsStorage
1413
from thirdweb.types.contract import ContractType
15-
from thirdweb.types.currency import CurrencyValue, Price, TokenAmount
1614
from thirdweb.types.sdk import SDKOptions
1715
from thirdweb.types.settings.metadata import TokenDropContractMetadata
1816
from eth_account.account import LocalAccount
1917
from web3 import Web3
20-
21-
from thirdweb.types.tx import TxResultWithId
22-
23-
2418
class TokenDrop(ERC20Standard[DropERC20]):
2519
"""
2620
Setup Tokens that are minted as users claim them.

0 commit comments

Comments
 (0)