CONTRACT_ADDRESSES_TOKENIZER

An object containing contract addresses of CTS-Tokenizer.

Key

11155111 (Ethereum Sepolia ChainID):
- DiamondFactoryCTS: Address of the DiamondFactory contract instance.
- AccessControlFacet: Address of the AccessControlFacet implementation contract.
- StateFacet: Address of the StateFacet implementation contract.
- CreateFractionsSkeletonFacet: Address of the CreateFractionsSkeletonFacet implementation contract.
- PurchaseSkeletonFacet: Address of the PurchaseSkeletonFacet implementation contract.
- ReceiveSkeletonFacet: Address of the ReceiveSkeletonFacet implementation contract.
- WhitelistedCreatorsFacet: Address of the WhitelistedCreatorsFacet implementation contract.
- WrapAssetsFacet: Address of the WrapAssetsFacet implementation contract.
- Erc20WrapperTransferFacet: Address of the Erc20WrapperTransferFacet implementation contract.
- Erc20FractionFacet: Address of the Erc20FractionFacet implementation contract.
- PurchaseSetterFacet: Address of the PurchaseSetterFacet implementation contract.
- SingleStatePurchaseFacet: Address of the SingleStatePurchaseFacet implementation contract.
- TwoBorderTimeFacet: Address of the TwoBorderTimeFacet implementation contract.
- PurchaseRoleEligibilityFacet: Address of the PurchaseRoleEligibilityFacet implementation contract.
- TwoCapPurchaseAmountFacet: Address of the TwoCapPurchaseAmountFacet implementation contract.
- SingleFundingCurrencyFacet: Address of the SingleFundingCurrencyFacet implementation contract.
- ReturnFungAndSemiFungFractionsFacet: Address of the ReturnFungAndSemiFungFractionsFacet implementation contract.
- SingleStateReceiveFacet: Address of the SingleStateReceiveFacet implementation contract.
- CreatorOnlyReceiveEligibilityFacet: Address of the CreatorOnlyReceiveEligibilityFacet implementation contract.
- ReceiveAllGatheredFundsFacet: Address of the ReceiveAllGatheredFundsFacet implementation contract.
- CreateToPurchaseRoleApprovalFacet: Address of the CreateToPurchaseRoleApprovalFacet implementation contract.
- PurchaseToReceiveRoleApprovalFacet: Address of the PurchaseToReceiveRoleApprovalFacet implementation contract.
- PurchaseToNonFundedCheckAndJumpFacet: Address of the PurchaseToNonFundedCheckAndJumpFacet implementation contract.
- NonFundedSkeletonFacet: Address of the NonFundedSkeletonFacet implementation contract.
- DiamondGovernedFacet: Address of the DiamondGovernedFacet implementation contract.
- Erc721ReceiverFacet: Address of the Erc721ReceiverFacet implementation contract.

Example

import { CONTRACT_ADDRESSES_TOKENIZER } from "@nexeraprotocol/cts-tokenizer-sdk";

// Example: Get the address of the State Facet implementation contract on the specified chain
const stateFacetAddress = CONTRACT_ADDRESSES_TOKENIZER[11155111].StateFacet;

console.log("State Facet contract address on chain 11155111:", stateFacetAddress);