@settlemint/solidity-token-erc721
Version:
Smart contract set to build an ERC721 token 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": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea264697066735822122070cd587e5ae7611b2f33dca7a68c79f274a50e9f0c908a1d14640fdc67ca52e464736f6c634300081b0033",
"deployedBytecode": "0x600080fdfea264697066735822122070cd587e5ae7611b2f33dca7a68c79f274a50e9f0c908a1d14640fdc67ca52e464736f6c634300081b0033",
"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"]>>;
}