Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 10 from a total of 10 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Execute Transact... | 11951481 | 1464 days ago | IN | 0 ETH | 0.00848249 | ||||
Top Up Gas | 11951413 | 1464 days ago | IN | 0 ETH | 0.00671586 | ||||
Transfer | 11792708 | 1488 days ago | IN | 0.05024341 ETH | 0.00002238 | ||||
Execute Transact... | 11773692 | 1491 days ago | IN | 0 ETH | 0.01319931 | ||||
Transfer | 11765564 | 1492 days ago | IN | 0.04323149 ETH | 0.00002238 | ||||
Execute Transact... | 11730032 | 1498 days ago | IN | 0 ETH | 0.00520288 | ||||
Transfer | 11720061 | 1499 days ago | IN | 0.03529151 ETH | 0.00002238 | ||||
Transfer | 11674421 | 1506 days ago | IN | 0.05001067 ETH | 0.00002238 | ||||
Top Up Gas | 11662739 | 1508 days ago | IN | 0 ETH | 0.00837389 | ||||
Transfer | 11635274 | 1513 days ago | IN | 0.02281716 ETH | 0.00002238 |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x614811B8...1910c861e The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
UpgradeabilityProxy
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity Multiple files format)
12345678910111213141516pragma solidity ^0.5.0;import './BaseUpgradeabilityProxy.sol';/*** @title UpgradeabilityProxy* @dev Extends BaseUpgradeabilityProxy with a constructor for initializing* implementation and init data.*/contract UpgradeabilityProxy is BaseUpgradeabilityProxy {/*** @dev Contract constructor.* @param _logic Address of the initial implementation.* @param _data Data to send as msg.data to the implementation to initialize the proxied contract.* It should include the signature and the parameters of the function to be called, as described in* https://solidity.readthedocs.io/en/v0.4.24/abi-spec.html#function-selector-and-argument-encoding.
12345678910111213141516pragma solidity ^0.5.0;import "./ResolverBase.sol";contract ABIResolver is ResolverBase {bytes4 constant private ABI_INTERFACE_ID = 0x2203ab56;event ABIChanged(bytes32 indexed node, uint256 indexed contentType);mapping(bytes32=>mapping(uint256=>bytes)) abis;/*** Sets the ABI associated with an ENS node.* Nodes may have one ABI of each content type. To remove an ABI, set it to* the empty string.* @param node The node to update.
12345678910111213141516pragma solidity ^0.5.0;/*** @dev Collection of functions related to the address type,*/library Address {/*** @dev Returns true if `account` is a contract.** This test is non-exhaustive, and there may be false-negatives: during the* execution of a contract's constructor, its address will be reported as* not containing a contract.** > It is unsafe to assume that an address for which this function returns* false is an externally-owned account (EOA) and not a contract.*/
12345678910111213141516pragma solidity ^0.5.0;import "./ResolverBase.sol";contract AddrResolver is ResolverBase {bytes4 constant private ADDR_INTERFACE_ID = 0x3b3b57de;bytes4 constant private ADDRESS_INTERFACE_ID = 0xf1cb7e06;uint constant private COIN_TYPE_ETH = 60;event AddrChanged(bytes32 indexed node, address a);event AddressChanged(bytes32 indexed node, uint coinType, bytes newAddress);mapping(bytes32=>mapping(uint=>bytes)) _addresses;/*** Sets the address associated with an ENS node.
12345678910111213141516/*** Balanceable - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
1234567891011121314pragma solidity 0.5.17;/*** This method was modified from the GPLv3 solidity code found in this repository* https://github.com/vcealicu/melonport-price-feed/blob/master/pricefeed/PriceFeed.sol*//// @title Base64 provides base 64 decoding functionality.contract Base64 {bytes constant BASE64_DECODE_CHAR =hex"000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e003e003f3435363738393a3b3c3d00000000000000000102030405060708090a0b0c0d0e0f10111213141516171819000000003f001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f30313233";/// @return decoded array of bytes./// @param _encoded base 64 encoded array of bytes.function _base64decode(bytes memory _encoded) internal pure returns (bytes memory) {
123456789101112pragma solidity 0.5.17;import "./base64.sol";contract Base64Exporter is Base64 {/// @dev export _base64decode() as an external function.function base64decode(bytes calldata _encoded) external pure returns (bytes memory) {return _base64decode(_encoded);}}
12345678910111213141516pragma solidity ^0.5.0;import './Proxy.sol';import './Address.sol';/*** @title BaseUpgradeabilityProxy* @dev This contract implements a proxy that allows to change the* implementation address to which it will delegate.* Such a change is called an implementation upgrade.*/contract BaseUpgradeabilityProxy is Proxy {/*** @dev Storage slot with the address of the current implementation.* This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
12345678910111213141516/*** IBurner - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516pragma solidity 0.5.17;import "./SafeMath.sol";interface TokenHolder {function burn(address, uint256) external returns (bool);}contract BurnerToken {using SafeMath for uint256;event Transfer(address indexed from, address indexed to, uint256 value);event Approval(address indexed owner, address indexed spender, uint256 value);
12345678910111213141516/*** BytesUtils - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516pragma solidity 0.5.17;import "./bytesUtils.sol";contract BytesUtilsExporter {using BytesUtils for bytes;/// @dev export _bytesToAddress() as an external function.function bytesToAddress(bytes calldata _bts, uint256 _from) external pure returns (address) {return _bts._bytesToAddress(_from);}/// @dev export _bytesToBytes4() as an external function.function bytesToBytes4(bytes calldata _bts, uint256 _from) external pure returns (bytes4) {return _bts._bytesToBytes4(_from);
12345678910111213141516pragma solidity ^0.5.0;import "./ResolverBase.sol";contract ContentHashResolver is ResolverBase {bytes4 constant private CONTENT_HASH_INTERFACE_ID = 0xbc1c58d1;event ContenthashChanged(bytes32 indexed node, bytes hash);mapping(bytes32=>bytes) hashes;/*** Sets the contenthash associated with an ENS node.* May only be called by the owner of that node in the ENS registry.* @param node The node to update.* @param hash The contenthash to set
12345678910111213141516/*** Controllable - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516/*** Controller - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516/*** Date - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516pragma solidity ^0.5.0;import "./ResolverBase.sol";import "./RRUtils.sol";contract DNSResolver is ResolverBase {using RRUtils for *;using ENSBytesUtils for bytes;bytes4 constant private DNS_RECORD_INTERFACE_ID = 0xa8fa5682;bytes4 constant private DNS_ZONE_INTERFACE_ID = 0x5c47637c;// DNSRecordChanged is emitted whenever a given node/name/resource's RRSET is updated.event DNSRecordChanged(bytes32 indexed node, bytes name, uint16 resource, bytes record);// DNSRecordDeleted is emitted whenever a given node/name/resource's RRSET is deleted.event DNSRecordDeleted(bytes32 indexed node, bytes name, uint16 resource);
12345678910111213141516/*** The MIT License (MIT)** Copyright (c) 2016-2019 zOS Global Limited** Permission is hereby granted, free of charge, to any person obtaining* a copy of this software and associated documentation files (the* "Software"), to deal in the Software without restriction, including* without limitation the rights to use, copy, modify, merge, publish,* distribute, sublicense, and/or sell copies of the Software, and to* permit persons to whom the Software is furnished to do so, subject to* the following conditions:** The above copyright notice and this permission notice shall be included* in all copies or substantial portions of the Software.*
12345678910111213141516/*** BSD 2-Clause License** Copyright (c) 2018, True Names Limited* All rights reserved.** Redistribution and use in source and binary forms, with or without* modification, are permitted provided that the following conditions are met:** * Redistributions of source code must retain the above copyright notice, this* list of conditions and the following disclaimer.** * Redistributions in binary form must reproduce the above copyright notice,* this list of conditions and the following disclaimer in the documentation* and/or other materials provided with the distribution.*
12345678910111213141516pragma solidity >0.4.23;library ENSBytesUtils {/** @dev Returns the keccak-256 hash of a byte range.* @param self The byte string to hash.* @param offset The position to start hashing at.* @param len The number of bytes to hash.* @return The hash of the byte range.*/function keccak(bytes memory self, uint offset, uint len) internal pure returns (bytes32 ret) {require(offset + len <= self.length);assembly {ret := keccak256(add(add(self, 32), offset), len)}}
12345678910111213141516pragma solidity ^0.5.0;import "./ENS.sol";/*** The ENS registry contract.*/contract ENSRegistry is ENS {struct Record {address owner;address resolver;uint64 ttl;}mapping (bytes32 => Record) records;
12345678910111213141516/*** ENSResolvable - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
1234567pragma solidity 0.5.17;/// @title ERC165 interface specifies a standard way of querying if a contract implements an interface.interface ERC165 {function supportsInterface(bytes4) external view returns (bool);}
12345678910111213pragma solidity 0.5.17;/// @title ERC20 interface is a subset of the ERC20 specification./// @notice see https://github.com/ethereum/EIPs/issues/20interface ERC20 {function allowance(address _owner, address _spender) external view returns (uint256);function approve(address _spender, uint256 _value) external returns (bool);function balanceOf(address _who) external view returns (uint256);function totalSupply() external view returns (uint256);function transfer(address _to, uint256 _value) external returns (bool);function transferFrom(address _from, address _to, uint256 _value) external returns (bool);}
12345678910111213141516/*** Holder (aka Asset Contract) - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516pragma solidity >=0.4.24 <0.7.0;/*** @title Initializable** @dev Helper contract to support initializer functions. To use it, replace* the constructor with a function that has the `initializer` modifier.* WARNING: Unlike constructors, initializer functions must be manually* invoked. This applies both to deploying an Initializable contract, as well* as extending an Initializable contract via inheritance.* WARNING: When used with inheritance, manual care must be taken to not invoke* a parent initializer twice, or ensure that all initializers are idempotent,* because this is not dealt with automatically as with constructors.*/contract Initializable {
12345678910111213141516pragma solidity ^0.5.0;import "./ResolverBase.sol";import "./AddrResolver.sol";contract InterfaceResolver is ResolverBase, AddrResolver {bytes4 constant private INTERFACE_INTERFACE_ID = bytes4(keccak256("interfaceImplementer(bytes32,bytes4)"));bytes4 private constant INTERFACE_META_ID = 0x01ffc9a7;event InterfaceChanged(bytes32 indexed node, bytes4 indexed interfaceID, address implementer);mapping(bytes32=>mapping(bytes4=>address)) interfaces;/*** Sets an interface associated with a name.* Setting the address to 0 restores the default behaviour of querying the contract at `addr()` for interface support.
12345678910111213141516pragma solidity 0.5.17;import "./wallet.sol";interface IWallet {function isValidSignature(bytes calldata, bytes calldata) external view returns (bytes4);}contract IsValidSignatureExporter {address walletAddress;constructor(address _wallet) public {walletAddress = _wallet;}
12345678910111213141516/*** Licence - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516pragma solidity ^0.5.0;import "./ResolverBase.sol";contract NameResolver is ResolverBase {bytes4 constant private NAME_INTERFACE_ID = 0x691f3431;event NameChanged(bytes32 indexed node, string name);mapping(bytes32=>string) names;/*** Sets the name associated with an ENS node, for reverse records.* May only be called by the owner of that node in the ENS registry.* @param node The node to update.* @param name The name to set.
12345678910111213141516pragma solidity 0.5.17;import "./SafeMath.sol";/// @title NonCompliantToken is a mock ERC20 token that is not compatible with the ERC20 interface.contract NonCompliantToken {using SafeMath for uint256;event Approval(address indexed owner, address indexed spender, uint256 value);event Transfer(address indexed from, address indexed to, uint256 amount);/// @dev Total supply of tokens in circulation.uint256 public totalSupply;/// @dev Balances for each account.mapping(address => uint256) public balanceOf;
12345678910111213141516/*** Oracle - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.** This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.** You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516pragma solidity 0.5.17;contract OraclizeConnector {address public cbAddress;uint256 gasPrice;bytes1 public proofType;constructor(address _cbAddress) public {cbAddress = _cbAddress;}function query(string memory _arg) private pure returns (bytes32) {return keccak256(bytes(_arg));}
12345678910111213141516/*ORACLIZE_APICopyright (c) 2015-2016 Oraclize SRLCopyright (c) 2016 Oraclize LTDPermission is hereby granted, free of charge, to any person obtaining a copyof this software and associated documentation files (the "Software"), to dealin the Software without restriction, including without limitation the rightsto use, copy, modify, merge, publish, distribute, sublicense, and/or sellcopies of the Software, and to permit persons to whom the Software isfurnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included inall copies or substantial portions of the Software.
12345678910111213141516/*** Ownable - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516/*** ParseIntScientific - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516pragma solidity 0.5.17;import "./parseIntScientific.sol";contract ParseIntScientificExporter is ParseIntScientific {/// @dev exports _parseIntScientific(string) as an external function.function parseIntScientific(string calldata _a) external pure returns (uint256) {return _parseIntScientific(_a);}/// @dev exports _parseIntScientific(string, uint) as an external function.function parseIntScientificDecimals(string calldata _a, uint256 _b) external pure returns (uint256) {return _parseIntScientific(_a, _b);}
12345678910111213141516pragma solidity ^0.5.0;/*** @title Proxy* @dev Implements delegation of calls to other contracts, with proper* forwarding of return values and bubbling of failures.* It defines a fallback function that delegates all calls to the address* returned by the abstract _implementation() internal function.*/contract Proxy {event Received(address _from, uint256 _amount);/*** @dev Fallback function.* Implemented entirely in `_fallback`.
12345678910111213141516pragma solidity ^0.5.0;import "./ResolverBase.sol";contract PubkeyResolver is ResolverBase {bytes4 constant private PUBKEY_INTERFACE_ID = 0xc8690233;event PubkeyChanged(bytes32 indexed node, bytes32 x, bytes32 y);struct PublicKey {bytes32 x;bytes32 y;}mapping(bytes32=>PublicKey) pubkeys;
12345678910111213141516/*** BSD 2-Clause License** Copyright (c) 2018, True Names Limited* All rights reserved.** Redistribution and use in source and binary forms, with or without* modification, are permitted provided that the following conditions are met:** * Redistributions of source code must retain the above copyright notice, this* list of conditions and the following disclaimer.** * Redistributions in binary form must reproduce the above copyright notice,* this list of conditions and the following disclaimer in the documentation* and/or other materials provided with the distribution.*
12345678910111213141516pragma solidity ^0.5.0;contract ResolverBase {bytes4 private constant INTERFACE_META_ID = 0x01ffc9a7;function supportsInterface(bytes4 interfaceID) public pure returns(bool) {return interfaceID == INTERFACE_META_ID;}function isAuthorised(bytes32 node) internal view returns(bool);modifier authorised(bytes32 node) {require(isAuthorised(node));_;}
12345678910111213141516pragma solidity >0.4.23;import "./ENSBytesUtils.sol";/*** @dev RRUtils is a library that provides utilities for parsing DNS resource records.*/library RRUtils {using ENSBytesUtils for *;/*** @dev Returns the number of bytes in the DNS name at 'offset' in 'self'.* @param self The byte array to read a name from.* @param offset The offset to start reading at.* @return The length of the DNS name at 'offset', in bytes.*/
12345678910111213141516/*** The MIT License (MIT)** Copyright (c) 2016-2019 zOS Global Limited** Permission is hereby granted, free of charge, to any person obtaining* a copy of this software and associated documentation files (the* "Software"), to deal in the Software without restriction, including* without limitation the rights to use, copy, modify, merge, publish,* distribute, sublicense, and/or sell copies of the Software, and to* permit persons to whom the Software is furnished to do so, subject to* the following conditions:** The above copyright notice and this permission notice shall be included* in all copies or substantial portions of the Software.*
12345678910111213141516pragma solidity ^0.5.0;/*** @dev Wrappers over Solidity's arithmetic operations with added overflow* checks.** Arithmetic operations in Solidity wrap on overflow. This can easily result* in bugs, because programmers usually assume that an overflow raises an* error, which is the standard behavior in high level programming languages.* `SafeMath` restores this intuition by reverting the transaction when an* operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeMath {
12345678910111213141516/** Copyright 2016 Nick Johnson** Licensed under the Apache License, Version 2.0 (the "License");* you may not use this file except in compliance with the License.* You may obtain a copy of the License at** http://www.apache.org/licenses/LICENSE-2.0** Unless required by applicable law or agreed to in writing, software* distributed under the License is distributed on an "AS IS" BASIS,* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.* See the License for the specific language governing permissions and* limitations under the License.*/
12345678910111213141516pragma solidity ^0.5.0;import "./ResolverBase.sol";contract TextResolver is ResolverBase {bytes4 constant private TEXT_INTERFACE_ID = 0x59d1d43c;event TextChanged(bytes32 indexed node, string indexed indexedKey, string key);mapping(bytes32=>mapping(string=>string)) texts;/*** Sets the text data associated with an ENS node and key.* May only be called by the owner of that node in the ENS registry.* @param node The node to update.* @param key The key to set.
12345678910111213141516pragma solidity 0.5.17;import "./SafeMath.sol";/// @title Token is a mock ERC20 token used for testing.contract Token {using SafeMath for uint256;event Approval(address indexed owner, address indexed spender, uint256 value);event Transfer(address indexed from, address indexed to, uint256 amount);/// @dev Total supply of tokens in circulation.uint256 public totalSupply;/// @dev Balances for each account.mapping(address => uint256) public balanceOf;
12345678910111213141516/*** TokenWhitelist - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516/*** TokenWhitelistable - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516pragma solidity 0.5.17;import "./tokenWhitelistable.sol";import "./ensResolvable.sol";contract TokenWhitelistableExporter is ENSResolvable, TokenWhitelistable {constructor(address _ens_, bytes32 _tokenWhitelistNode_) public {_initializeENSResolvable(_ens_);_initializeTokenWhitelistable(_tokenWhitelistNode_);}function getTokenInfo(address _a) external view returns (string memory, uint256, uint256, bool, bool, bool, uint256) {return _getTokenInfo(_a);}
12345678910111213141516/*** Transferrable - The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516/*** The Consumer Contract Wallet* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516/*** The Consumer Contract Wallet - Wallet Deployer Cache* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516/*** The Consumer Contract Wallet - Wallet Deployer* Copyright (C) 2019 The Contract Wallet Company Limited** This program is free software: you can redistribute it and/or modify* it under the terms of the GNU General Public License as published by* the Free Software Foundation, either version 3 of the License, or* (at your option) any later version.* This program is distributed in the hope that it will be useful,* but WITHOUT ANY WARRANTY; without even the implied warranty of* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the* GNU General Public License for more details.* You should have received a copy of the GNU General Public License* along with this program. If not, see <https://www.gnu.org/licenses/>.
12345678910111213141516pragma solidity 0.5.17;contract WalletMock {/// @dev Ether can be deposited from any source, so this contract must be payable by anyone.function() external payable {}function transfer(address payable _to, uint256 _amount) external {_to.transfer(_amount);}function sendValue(address payable _to, uint256 _amount) external {(bool success, ) = _to.call.value(_amount)("");require(success, "sendValue failed");}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_logic","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"payable":true,"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_from","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Received","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"}]
Deployed Bytecode
0x6080604052366046576040805133815234602082015281517f88a5966d370b9919b20f3e2c13ff65706f196a4e32cc2c12bf57088f88525874929181900390910190a16052565b6052604e6054565b6079565b005b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5490565b3660008037600080366000845af43d6000803e8080156097573d6000f35b3d6000fd5b3b15159056fea265627a7a7231582058f40811b947b3087b4bc98e2e55fad06453ab3add16603dca7f42157d4de2e364736f6c63430005110032
Deployed Bytecode Sourcemap
213:894:22:-;;;511:8:14;507:91;;546:31;;;555:10;546:31;;567:9;546:31;;;;;;;;;;;;;;;;;585:7;;507:91;603:28;613:17;:15;:17::i;:::-;603:9;:28::i;:::-;213:894:22;772:156:3;592:66;907:11;;891:33::o;1045:731:14:-;1347:12;1344:1;1341;1328:32;1537:1;1534;1520:12;1517:1;1501:14;1496:3;1483:56;1601:14;1598:1;1595;1580:36;1631:6;1686:36;;;;1749:14;1746:1;1739:25;1686:36;1705:14;1702:1;1695:25;542:413:2;902:20;940:8;;;542:413::o
Swarm Source
bzzr://58f40811b947b3087b4bc98e2e55fad06453ab3add16603dca7f42157d4de2e3
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.