UNPKG

@settlemint/solidity-token-erc721

Version:
116 lines (110 loc) 3.43 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 SafeCast$Type { "_format": "hh-sol-artifact-1", "contractName": "SafeCast", "sourceName": "@openzeppelin/contracts/utils/math/SafeCast.sol", "abi": [ { "inputs": [ { "internalType": "uint8", "name": "bits", "type": "uint8" }, { "internalType": "int256", "name": "value", "type": "int256" } ], "name": "SafeCastOverflowedIntDowncast", "type": "error" }, { "inputs": [ { "internalType": "int256", "name": "value", "type": "int256" } ], "name": "SafeCastOverflowedIntToUint", "type": "error" }, { "inputs": [ { "internalType": "uint8", "name": "bits", "type": "uint8" }, { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "SafeCastOverflowedUintDowncast", "type": "error" }, { "inputs": [ { "internalType": "uint256", "name": "value", "type": "uint256" } ], "name": "SafeCastOverflowedUintToInt", "type": "error" } ], "bytecode": "0x6080806040523460175760399081601c823930815050f35b5f80fdfe5f80fdfea2646970667358221220e85b79f357f3f48cba3aade06d82d57ab1561dbffede2d19c9854aa12d9007c264736f6c634300081e0033", "deployedBytecode": "0x5f80fdfea2646970667358221220e85b79f357f3f48cba3aade06d82d57ab1561dbffede2d19c9854aa12d9007c264736f6c634300081e0033", "linkReferences": {}, "deployedLinkReferences": {} } declare module "@nomicfoundation/hardhat-viem/types" { export function deployContract( contractName: "SafeCast", constructorArgs?: [], config?: DeployContractConfig ): Promise<GetContractReturnType<SafeCast$Type["abi"]>>; export function deployContract( contractName: "@openzeppelin/contracts/utils/math/SafeCast.sol:SafeCast", constructorArgs?: [], config?: DeployContractConfig ): Promise<GetContractReturnType<SafeCast$Type["abi"]>>; export function sendDeploymentTransaction( contractName: "SafeCast", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType<SafeCast$Type["abi"]>; deploymentTransaction: GetTransactionReturnType; }>; export function sendDeploymentTransaction( contractName: "@openzeppelin/contracts/utils/math/SafeCast.sol:SafeCast", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType<SafeCast$Type["abi"]>; deploymentTransaction: GetTransactionReturnType; }>; export function getContractAt( contractName: "SafeCast", address: Address, config?: GetContractAtConfig ): Promise<GetContractReturnType<SafeCast$Type["abi"]>>; export function getContractAt( contractName: "@openzeppelin/contracts/utils/math/SafeCast.sol:SafeCast", address: Address, config?: GetContractAtConfig ): Promise<GetContractReturnType<SafeCast$Type["abi"]>>; }