UNPKG

@settlemint/solidity-token-erc721

Version:
67 lines (61 loc) 2.52 kB
// 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": "0x6080806040523460175760399081601c823930815050f35b5f80fdfe5f80fdfea2646970667358221220fb4308a1c350c998cf1bed5da2d9b5dad9a742e15e002fd562b51ec5a306f1a364736f6c634300081e0033", "deployedBytecode": "0x5f80fdfea2646970667358221220fb4308a1c350c998cf1bed5da2d9b5dad9a742e15e002fd562b51ec5a306f1a364736f6c634300081e0033", "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"]>>; }