UNPKG

@mimicry/sdk

Version:

A node SDK designed to simplify interaction with the Mimicry Protocol smart contracts.

11 lines (10 loc) 392 B
import { Contract, Signer } from 'ethers'; import { ChainId } from '../enums'; export declare class Player { private contract; private address; constructor(_contract: Contract, _address: string); static initialize(_address: string, _signer: Signer, _network: ChainId): Promise<Player>; getNFTs(): Promise<any>; getTokenURI(_tokenId: number): Promise<any>; }