export interface CreateNftCollection {
    /**
     * Name of the token.
     */
    name: string;
    /**
     * Symbol of the token.
     */
    symbol: string;
    /**
     * base URI of the collection, defaults to empty string. Base URI is prepended to the token ID in the token URI.
     */
    baseURI?: string;
    /**
     * (Optional) Address of the admin of the token. Defaults to the connected MetaMask account. Admin can add new minters and pausers.
     */
    author?: string;
    /**
     * (Optional) Address of the minter of the token. Defaults to the connected MetaMask account. Minters can mint new tokens.
     */
    minter?: string;
}
