UNPKG

@settlemint/solidity-token-erc1155

Version:
116 lines (110 loc) 3.44 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": "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220309fd72e56408bb418e8136ede050df67818feb36adae86e415e897eaf959e7a64736f6c634300081b0033", "deployedBytecode": "0x600080fdfea2646970667358221220309fd72e56408bb418e8136ede050df67818feb36adae86e415e897eaf959e7a64736f6c634300081b0033", "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"]>>; }