@settlemint/solidity-token-erc721
Version:
Smart contract set to build an ERC721 token in SettleMint
88 lines (82 loc) • 2.82 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 Strings$Type {
"_format": "hh-sol-artifact-1",
"contractName": "Strings",
"sourceName": "@openzeppelin/contracts/utils/Strings.sol",
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "length",
"type": "uint256"
}
],
"name": "StringsInsufficientHexLength",
"type": "error"
},
{
"inputs": [],
"name": "StringsInvalidAddressFormat",
"type": "error"
},
{
"inputs": [],
"name": "StringsInvalidChar",
"type": "error"
}
],
"bytecode": "0x6080806040523460175760399081601c823930815050f35b5f80fdfe5f80fdfea2646970667358221220bf6c1ae1d3708fa06684ccbd35f7a7d47c3d32fd089cec2c8123b3b07555bad764736f6c634300081e0033",
"deployedBytecode": "0x5f80fdfea2646970667358221220bf6c1ae1d3708fa06684ccbd35f7a7d47c3d32fd089cec2c8123b3b07555bad764736f6c634300081e0033",
"linkReferences": {},
"deployedLinkReferences": {}
}
declare module "@nomicfoundation/hardhat-viem/types" {
export function deployContract(
contractName: "Strings",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<Strings$Type["abi"]>>;
export function deployContract(
contractName: "@openzeppelin/contracts/utils/Strings.sol:Strings",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<Strings$Type["abi"]>>;
export function sendDeploymentTransaction(
contractName: "Strings",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<Strings$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function sendDeploymentTransaction(
contractName: "@openzeppelin/contracts/utils/Strings.sol:Strings",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<Strings$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function getContractAt(
contractName: "Strings",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<Strings$Type["abi"]>>;
export function getContractAt(
contractName: "@openzeppelin/contracts/utils/Strings.sol:Strings",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<Strings$Type["abi"]>>;
}