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