This repository was archived by the owner on May 3, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
- from typing import Dict , List
1
+ from typing import List
2
2
3
3
from thirdweb_web3 import Web3
4
4
5
- from nftlabs .modules .currency import CurrencyModule
6
- from nftlabs .modules .nft import NftModule
7
-
8
5
from ..abi .erc20 import ERC20
9
6
from ..abi .erc1155 import ERC1155
10
7
from ..abi .market import Market , MarketListing
11
8
from ..abi .nft import NFT
12
9
from ..constants import ZeroAddress
13
10
from ..errors import AssetNotFoundException , UnsupportedAssetException
14
- from ..types .currency import Currency , CurrencyValue
11
+ from ..modules .currency import CurrencyModule
12
+ from ..modules .nft import NftModule
13
+ from ..types .currency import CurrencyValue
15
14
from ..types .listing import Listing
16
15
from ..types .market import Filter , ListArg , MarketListing
17
16
from . import BaseModule
@@ -148,7 +147,7 @@ def set_market_fee_bps(self, amount: int):
148
147
self .get_transact_opts ())
149
148
self .execute_tx (tx )
150
149
151
- def get (self , listing_id ) -> MarketListing :
150
+ def get (self , listing_id ) -> Listing :
152
151
"""
153
152
Get a listing.
154
153
"""
You can’t perform that action at this time.
0 commit comments