@settlemint/solidity-soulbound
Version:
Smart contract set to build an Soulbound token in SettleMint
107 lines (101 loc) • 2.98 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 IERC1967$Type {
"_format": "hh-sol-artifact-1",
"contractName": "IERC1967",
"sourceName": "@openzeppelin/contracts/interfaces/IERC1967.sol",
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "previousAdmin",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "newAdmin",
"type": "address"
}
],
"name": "AdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "beacon",
"type": "address"
}
],
"name": "BeaconUpgraded",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "Upgraded",
"type": "event"
}
],
"bytecode": "0x",
"deployedBytecode": "0x",
"linkReferences": {},
"deployedLinkReferences": {}
}
declare module "@nomicfoundation/hardhat-viem/types" {
export function deployContract(
contractName: "IERC1967",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<IERC1967$Type["abi"]>>;
export function deployContract(
contractName: "@openzeppelin/contracts/interfaces/IERC1967.sol:IERC1967",
constructorArgs?: [],
config?: DeployContractConfig
): Promise<GetContractReturnType<IERC1967$Type["abi"]>>;
export function sendDeploymentTransaction(
contractName: "IERC1967",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<IERC1967$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function sendDeploymentTransaction(
contractName: "@openzeppelin/contracts/interfaces/IERC1967.sol:IERC1967",
constructorArgs?: [],
config?: SendDeploymentTransactionConfig
): Promise<{
contract: GetContractReturnType<IERC1967$Type["abi"]>;
deploymentTransaction: GetTransactionReturnType;
}>;
export function getContractAt(
contractName: "IERC1967",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<IERC1967$Type["abi"]>>;
export function getContractAt(
contractName: "@openzeppelin/contracts/interfaces/IERC1967.sol:IERC1967",
address: Address,
config?: GetContractAtConfig
): Promise<GetContractReturnType<IERC1967$Type["abi"]>>;
}