@settlemint/solidity-token-erc721
Version:
Smart contract set to build an ERC721 token in SettleMint
61 lines (55 loc) • 2.49 kB
TypeScript
// This file was autogenerated by hardhat-viem, do not edit it.
// prettier-ignore
// tslint:disable
// eslint-disable
import type { Address } from "viem";
import type { GetContractReturnType } from "@nomicfoundation/hardhat-viem/types";
import "@nomicfoundation/hardhat-viem/types";
export interface OwnableDelegateProxy$Type {
"_format": "hh-sol-artifact-1",
"contractName": "OwnableDelegateProxy",
"sourceName": "contracts/extensions/ERC721OpenSeaGassLess.sol",
"abi": [],
"bytecode": "0x608080604052346013576039908160188239f35b5f80fdfe5f80fdfea2646970667358221220b76d1803037b45675359d591214e7267aa585716b4361f2b0824367c1b4f1e5f64736f6c634300081e0033",
"deployedBytecode": "0x5f80fdfea2646970667358221220b76d1803037b45675359d591214e7267aa585716b4361f2b0824367c1b4f1e5f64736f6c634300081e0033",
"linkReferences": {},
"deployedLinkReferences": {}
}
declare module "@nomicfoundation/hardhat-viem/types" {
export function deployContract(
contractName: "OwnableDelegateProxy",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<OwnableDelegateProxy$Type["abi"]>>;
export function deployContract(
contractName: "contracts/extensions/ERC721OpenSeaGassLess.sol:OwnableDelegateProxy",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<OwnableDelegateProxy$Type["abi"]>>;
export function sendDeploymentTransaction(
contractName: "OwnableDelegateProxy",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<OwnableDelegateProxy$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function sendDeploymentTransaction(
contractName: "contracts/extensions/ERC721OpenSeaGassLess.sol:OwnableDelegateProxy",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<OwnableDelegateProxy$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function getContractAt(
contractName: "OwnableDelegateProxy",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<OwnableDelegateProxy$Type["abi"]>>;
export function getContractAt(
contractName: "contracts/extensions/ERC721OpenSeaGassLess.sol:OwnableDelegateProxy",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<OwnableDelegateProxy$Type["abi"]>>;
}