@settlemint/ssolidity-token-erc721-generative-art
Version:
Smart contract set to build an ERC721 token with generated art in SettleMint
67 lines (61 loc) • 2.53 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 MerkleProof$Type {
"_format": "hh-sol-artifact-1",
"contractName": "MerkleProof",
"sourceName": "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol",
"abi": [
{
"inputs": [],
"name": "MerkleProofInvalidMultiproof",
"type": "error"
}
],
"bytecode": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea26469706673582212204999b68c9ef31f004e5b38b43d9847ba4b2181ab0fd8aaf76a5c321b2c3c10e064736f6c63430008180033",
"deployedBytecode": "0x600080fdfea26469706673582212204999b68c9ef31f004e5b38b43d9847ba4b2181ab0fd8aaf76a5c321b2c3c10e064736f6c63430008180033",
"linkReferences": {},
"deployedLinkReferences": {}
}
declare module "@nomicfoundation/hardhat-viem/types" {
export function deployContract(
contractName: "MerkleProof",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<MerkleProof$Type["abi"]>>;
export function deployContract(
contractName: "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol:MerkleProof",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<MerkleProof$Type["abi"]>>;
export function sendDeploymentTransaction(
contractName: "MerkleProof",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<MerkleProof$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function sendDeploymentTransaction(
contractName: "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol:MerkleProof",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<MerkleProof$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function getContractAt(
contractName: "MerkleProof",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<MerkleProof$Type["abi"]>>;
export function getContractAt(
contractName: "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol:MerkleProof",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<MerkleProof$Type["abi"]>>;
}