An object containing all the contract addresses for each supported chain. Refer to the Constant type to see the complete list of addresses.
import { addressesByNetwork, SupportedChainId } from "@looksrare/sdk";
const addresses = addressesByNetwork[SupportedChainId.MAINNET];
STRATEGY_STANDARD_SALE
and STRATEGY_COLLECTION_SALE
addresses refer to StrategyStandardSaleForFixedPriceV1B
and StrategyAnyItemFromCollectionForFixedPriceV1B
contracts, while STRATEGY_STANDARD_SALE_DEPRECATED
and STRATEGY_COLLECTION_SALE_DEPRECATED
addresses refer to the first iterations of these strategies that are not used anymore.
An object containing data related to supported chains. Refer to the Constant type to see the complete list of chain info.
import { CHAIN_INFO, SupportedChainId } from "@looksrare/sdk";
const currentChainInfo = CHAIN_INFO[SupportedChainId.MAINNET];