Interface SchrodingerContractData

interface SchrodingerContractData {
    nftContractAddress: string;
    nftChainRpcUrl: string;
    restrictToOwner?: boolean;
}

Hierarchy (view full)

Properties

nftContractAddress: string

Contract address of NFT which will be used to authenticate decryption

nftChainRpcUrl: string

RPC URL of the chain the NFT collection exists on

restrictToOwner?: boolean

If true, only the owner is able to use the contract for data encryption/decryption

Default

true