UNPKG

@river-build/web3

Version:

Dapps for our Space and Registry contracts

17 lines 752 B
import { Address } from './ContractTypes'; export declare class TestGatingNFT { publicMint(toAddress: string): Promise<number>; } declare function getContractAddress(nftName: string): Promise<Address>; export declare function getTestGatingNFTContractAddress(): Promise<Address>; declare function publicMint(nftName: string, toAddress: Address): Promise<number>; declare function burn(nftName: string, tokenId: number): Promise<void>; declare function balanceOf(nftName: string, address: Address): Promise<number>; export declare const TestERC721: { publicMint: typeof publicMint; burn: typeof burn; balanceOf: typeof balanceOf; getContractAddress: typeof getContractAddress; }; export {}; //# sourceMappingURL=TestGatingNFT.d.ts.map