@settlemint/solidity-token-erc721
Version:
Smart contract set to build an ERC721 token in SettleMint
61 lines (55 loc) • 2.38 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": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220882216d4899c6b949cbd5240512d4c90c2bede7fa7fc3aa3867ed7e6eb7a2cfb64736f6c634300081b0033",
"deployedBytecode": "0x600080fdfea2646970667358221220882216d4899c6b949cbd5240512d4c90c2bede7fa7fc3aa3867ed7e6eb7a2cfb64736f6c634300081b0033",
"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"]>>;
}