ufomarketplace-sdk-new
Version:
SDK to interact with set ufo marketplace contracts
72 lines (68 loc) • 1.56 kB
text/typescript
/* Autogenerated file. Do not edit manually. */
/* tslint:disable */
/* eslint-disable */
import { Contract, Signer, utils } from "ethers";
import type { Provider } from "@ethersproject/providers";
import type {
ERC1967Upgrade,
ERC1967UpgradeInterface,
} from "../ERC1967Upgrade";
const _abi = [
{
type: "event",
name: "AdminChanged",
inputs: [
{
name: "previousAdmin",
type: "address",
indexed: false,
internalType: "address",
},
{
name: "newAdmin",
type: "address",
indexed: false,
internalType: "address",
},
],
anonymous: false,
},
{
type: "event",
name: "BeaconUpgraded",
inputs: [
{
name: "beacon",
type: "address",
indexed: true,
internalType: "address",
},
],
anonymous: false,
},
{
type: "event",
name: "Upgraded",
inputs: [
{
name: "implementation",
type: "address",
indexed: true,
internalType: "address",
},
],
anonymous: false,
},
] as const;
export class ERC1967Upgrade__factory {
static readonly abi = _abi;
static createInterface(): ERC1967UpgradeInterface {
return new utils.Interface(_abi) as ERC1967UpgradeInterface;
}
static connect(
address: string,
signerOrProvider: Signer | Provider
): ERC1967Upgrade {
return new Contract(address, _abi, signerOrProvider) as ERC1967Upgrade;
}
}