UNPKG

@river-build/web3

Version:

Dapps for our Space and Registry contracts

17 lines 660 B
import { Address } from './ContractTypes'; export declare enum TestTokenId { Gold = 1, Silver = 2, Bronze = 3 } declare function getContractAddress(tokenName: string): Promise<Address>; declare function publicMint(tokenName: string, toAddress: Address, tokenId: TestTokenId): Promise<void>; declare function balanceOf(tokenName: string, address: Address, tokenId: TestTokenId): Promise<number>; export declare const TestERC1155: { TestTokenId: typeof TestTokenId; getContractAddress: typeof getContractAddress; balanceOf: typeof balanceOf; publicMint: typeof publicMint; }; export {}; //# sourceMappingURL=TestGatingERC1155.d.ts.map