UNPKG

@settlemint/solidity-soulbound

Version:

Smart contract set to build an Soulbound token in SettleMint

85 lines (79 loc) 2.7 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 ContextUpgradeable$Type { "_format": "hh-sol-artifact-1", "contractName": "ContextUpgradeable", "sourceName": "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol", "abi": [ { "inputs": [], "name": "InvalidInitialization", "type": "error" }, { "inputs": [], "name": "NotInitializing", "type": "error" }, { "anonymous": false, "inputs": [ { "indexed": false, "internalType": "uint64", "name": "version", "type": "uint64" } ], "name": "Initialized", "type": "event" } ], "bytecode": "0x", "deployedBytecode": "0x", "linkReferences": {}, "deployedLinkReferences": {} } declare module "@nomicfoundation/hardhat-viem/types" { export function deployContract( contractName: "ContextUpgradeable", constructorArgs?: [], config?: DeployContractConfig ): Promise<GetContractReturnType<ContextUpgradeable$Type["abi"]>>; export function deployContract( contractName: "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable", constructorArgs?: [], config?: DeployContractConfig ): Promise<GetContractReturnType<ContextUpgradeable$Type["abi"]>>; export function sendDeploymentTransaction( contractName: "ContextUpgradeable", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType<ContextUpgradeable$Type["abi"]>; deploymentTransaction: GetTransactionReturnType; }>; export function sendDeploymentTransaction( contractName: "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable", constructorArgs?: [], config?: SendDeploymentTransactionConfig ): Promise<{ contract: GetContractReturnType<ContextUpgradeable$Type["abi"]>; deploymentTransaction: GetTransactionReturnType; }>; export function getContractAt( contractName: "ContextUpgradeable", address: Address, config?: GetContractAtConfig ): Promise<GetContractReturnType<ContextUpgradeable$Type["abi"]>>; export function getContractAt( contractName: "@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol:ContextUpgradeable", address: Address, config?: GetContractAtConfig ): Promise<GetContractReturnType<ContextUpgradeable$Type["abi"]>>; }