Options for NFT contract creation

Export

NFTContractOptions

interface NFTContractOptions {
    base_uri: string;
    name: string;
    symbol: string;
}

Properties

Properties

base_uri: string

The base URI for the NFT metadata

Memberof

NFTContractOptions

name: string

The name of the NFT

Memberof

NFTContractOptions

symbol: string

The symbol of the NFT

Memberof

NFTContractOptions