@settlemint/solidity-token-erc721
Version:
Smart contract set to build an ERC721 token in SettleMint
61 lines (55 loc) • 2.26 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 Math$Type {
"_format": "hh-sol-artifact-1",
"contractName": "Math",
"sourceName": "@openzeppelin/contracts/utils/math/Math.sol",
"abi": [],
"bytecode": "0x6080806040523460175760399081601c823930815050f35b5f80fdfe5f80fdfea26469706673582212206d9c4cc57e6476087652930f20fc3271e7b7a32f744fbd9edeef1f9cbdd1939b64736f6c634300081e0033",
"deployedBytecode": "0x5f80fdfea26469706673582212206d9c4cc57e6476087652930f20fc3271e7b7a32f744fbd9edeef1f9cbdd1939b64736f6c634300081e0033",
"linkReferences": {},
"deployedLinkReferences": {}
}
declare module "@nomicfoundation/hardhat-viem/types" {
export function deployContract(
contractName: "Math",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<Math$Type["abi"]>>;
export function deployContract(
contractName: "@openzeppelin/contracts/utils/math/Math.sol:Math",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<Math$Type["abi"]>>;
export function sendDeploymentTransaction(
contractName: "Math",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<Math$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function sendDeploymentTransaction(
contractName: "@openzeppelin/contracts/utils/math/Math.sol:Math",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<Math$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function getContractAt(
contractName: "Math",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<Math$Type["abi"]>>;
export function getContractAt(
contractName: "@openzeppelin/contracts/utils/math/Math.sol:Math",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<Math$Type["abi"]>>;
}