@cryptovoxels/marketplace-js
Version:
A simple JS sdk to interact with Voxels' marketplace
56 lines (55 loc) • 1.59 kB
TypeScript
import { Signer } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type { Marketplacev1, Marketplacev1Interface } from "../Marketplacev1";
export declare class Marketplacev1__factory {
static readonly abi: ({
anonymous: boolean;
inputs: {
indexed: boolean;
internalType: string;
name: string;
type: string;
}[];
name: string;
type: string;
outputs?: undefined;
stateMutability?: undefined;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: {
components: {
internalType: string;
name: string;
type: string;
}[];
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
anonymous?: undefined;
} | {
inputs: {
internalType: string;
name: string;
type: string;
}[];
name: string;
outputs: {
internalType: string;
name: string;
type: string;
}[];
stateMutability: string;
type: string;
anonymous?: undefined;
})[];
static createInterface(): Marketplacev1Interface;
static connect(address: string, signerOrProvider: Signer | Provider): Marketplacev1;
}