This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// File: @ensdomains/ens/contracts/ENS.sol | |
pragma solidity >=0.4.24; | |
interface ENS { | |
// Logged when the owner of a node assigns a new owner to a subnode. | |
event NewOwner(bytes32 indexed node, bytes32 indexed label, address owner); | |
// Logged when the owner of a node transfers ownership to a new account. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param {string} apikey - etherscan api key | |
* @param {string} guid - receipt id | |
* @param {boolean} isProxyContract - true, if contract is a proxy contract (optional) | |
* @returns {{ status, message, succeed }} receiptStatus | |
*/ | |
export const receiptStatus = async (apikey: string, guid: string, isProxyContract?: boolean) => { | |
return await remix.call('etherscan' as any, 'receiptStatus', guid, apikey, isProxyContract) | |
} |