UNPKG

@thirdweb-dev/contracts-js

Version:
31 lines 1.78 kB
import { Signer, ContractFactory, Overrides } from "ethers"; import type { Provider, TransactionRequest } from "@ethersproject/providers"; import type { PermissionsStorage, PermissionsStorageInterface } from "../PermissionsStorage"; type PermissionsStorageConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>; export declare class PermissionsStorage__factory extends ContractFactory { constructor(...args: PermissionsStorageConstructorParams); deploy(overrides?: Overrides & { from?: string | Promise<string>; }): Promise<PermissionsStorage>; getDeployTransaction(overrides?: Overrides & { from?: string | Promise<string>; }): TransactionRequest; attach(address: string): PermissionsStorage; connect(signer: Signer): PermissionsStorage__factory; static readonly bytecode = "0x60a6610038600b82828239805160001a607314602b57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361060335760003560e01c80630998ed3b146038575b600080fd5b605e7f0a7b0f5c59907924802379ebe98cdc23e2ee7820f63d30126e10b3752010e50081565b60405190815260200160405180910390f3fea2646970667358221220a9b642f542a8ede2d5e630d9db33650103cf45377e8411ec1336e3fc6392849264736f6c63430008170033"; static readonly abi: { type: string; name: string; inputs: never[]; outputs: { name: string; type: string; internalType: string; }[]; stateMutability: string; }[]; static createInterface(): PermissionsStorageInterface; static connect(address: string, signerOrProvider: Signer | Provider): PermissionsStorage; } export {}; //# sourceMappingURL=PermissionsStorage__factory.d.ts.map