Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
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 0xA398f1ed...8837CB6Ba The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
BiddingProxy
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2025-04-22
*/
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.18 <0.8.20;
/*
AuctionMaster, intDeedMaster, extDeedMaster, IntDeedProxy, BiddingProxy ( by pepihasenfuss.eth, copyright (c) 2025, based on ENS 1.0 Temporary Hash Registrar, a Vickrey Auction introduced by Nick Johnson and the ENS team )
A Vickrey auction or sealed-bid second-price auction (SBSPA) is a type of sealed-bid auction.
ungravel.eth, GroupWalletFactory, GroupWalletMaster, GroupWallet, ProxyWallet, TokenMaster, ProxyToken, PrePaidContract, AuctionMaster, BiddingProxy, intDeedMaster, extDeedMaster, IntDeedProxy, Intentions by pepihasenfuss.eth 2017-2025, Copyright (c) 2025
========================
// ENS, ENSRegistryWithFallback, PublicResolver, Resolver, FIFS-Registrar, Registrar, AuctionRegistrar, BaseRegistrar, ReverseRegistrar, DefaultReverseResolver, ETHRegistrarController,
// PriceOracle, SimplePriceOracle, StablePriceOracle, ENSMigrationSubdomainRegistrar, CustomRegistrar, Root, RegistrarMigration are contracts of "ENS", by Nick Johnson and team.
//
// Copyright (c) 2018, True Names Limited / ENS Labs 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.
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
interface ABS_AUC_ENS {
function owner(bytes32 node) external view returns(address);
function resolver(bytes32 node) external view returns(address);
function ttl(bytes32 node) external view returns(uint64);
function setOwner(bytes32 node, address ensowner) external;
function setSubnodeOwner(bytes32 node, bytes32 label, address ensowner) external;
function setResolver(bytes32 node, address ensresolver) external;
function setTTL(bytes32 node, uint64 ensttl) external;
function recordExists(bytes32 nodeENS) external view returns (bool);
event NewOwner(bytes32 indexed node, bytes32 indexed label, address ensowner);
event Transfer(bytes32 indexed node, address ensowner);
event NewResolver(bytes32 indexed node, address ensresolver);
event NewTTL(bytes32 indexed node, uint64 ensttl);
}
abstract contract ABS_TokenProxy {
function owner() external virtual view returns (address ow);
function balanceOf(address tokenOwner) external virtual view returns (uint thebalance);
function name() external virtual view returns (string memory);
function transferFrom_78S(address from, address toReceiver, uint amount) external virtual;
function tokenAllow(address tokenOwner,address spender) external virtual view returns (uint256 tokens);
function transfer_G8l(address toReceiver, uint amount) external virtual;
function transferAdjustPrices(address toReceiver, uint amount, uint payment, bytes32 dhash, address deedContract) external virtual;
function nameBidBucket(bytes32 dhash,bytes32 labelhash,address deedContract) external virtual;
}
abstract contract Abstract_Resolver {
mapping (bytes32 => string) public name;
}
abstract contract ABS_ReverseRegistrar {
Abstract_Resolver public defaultResolver;
function node(address addr) external virtual pure returns (bytes32);
function setName(string memory name) external virtual returns (bytes32);
}
abstract contract ABS_Reg {
ABS_ReverseRegistrar public reverseR;
function state_pln(bytes32 _hash) public view virtual returns (uint);
function saveExtDeedCntr_gm9(address _sender,bytes32 _hash,uint _value) public payable virtual;
function unsealExternalBid_qfG(bytes32 _hash) public payable virtual;
function finalizeExternalAuction_WmS(bytes32 _hash) public payable virtual;
function cancelExternalBid_9ig(bytes32 seal, bytes32 hash) public payable virtual;
function tld() public view virtual returns (string memory);
}
// ************************* BiddingProxy CONTRACT *****************************
// The bidding proxy contract is deployed for each external bidder.
// External bidders may remain anonymous, they are not a member of the team/group.
// BiddingProxy is a safe and cost-saving method to participate in a Funding Auction without beeing member of the group.
pragma solidity ^0.8.18 <0.8.20;
contract BiddingProxy {
address internal masterCopy;
address public owner;
uint64 public creationDate;
ABS_Reg public registrar;
bytes32 public lhash;
event DeedCreated(address indexed,bytes32 indexed);
constructor(address _masterCopy,bytes32 _lhash) payable {
masterCopy = _masterCopy;
registrar = ABS_Reg(msg.sender);
creationDate = uint64(block.timestamp);
lhash = _lhash;
emit DeedCreated(address(this),_lhash);
}
fallback () external payable
{
// solium-disable-next-line security/no-inline-assembly
assembly {
let ptr := mload(0x40)
calldatacopy(ptr, 0, calldatasize())
let success := delegatecall(gas(),and(sload(0),0xffffffffffffffffffffffffffffffffffffffff),ptr,calldatasize(),0,0)
returndatacopy(0, 0, returndatasize())
if eq(success,0) { revert(0,0x204) }
return(0, returndatasize())
}
}
}
// ************************* BiddingProxy CONTRACT *****************************Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_masterCopy","type":"address"},{"internalType":"bytes32","name":"_lhash","type":"bytes32"}],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"","type":"address"},{"indexed":true,"internalType":"bytes32","name":"","type":"bytes32"}],"name":"DeedCreated","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"creationDate","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lhash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"registrar","outputs":[{"internalType":"contract ABS_Reg","name":"","type":"address"}],"stateMutability":"view","type":"function"}]Contract Creation Code
0x6080604052604051610255380380610255833981016040819052610022916100a7565b600080546001600160a01b0384166001600160a01b03199182161782556002805490911633179055600180546001600160401b034216600160a01b02600160a01b600160e01b03199091161790556003829055604051829130917fecaa63b23826d6939c8b3b3dd2e3e8b25aaa4bf2b4738d699883b6d7e6414f8c9190a350506100e1565b600080604083850312156100ba57600080fd5b82516001600160a01b03811681146100d157600080fd5b6020939093015192949293505050565b610165806100f06000396000f3fe60806040526004361061003f5760003560e01c806305b344101461006d57806323491869146100b35780632b20e397146100d75780638da5cb5b1461010f575b6040516000368183378081368460018060a01b038554165af491503d81823e816100695761020481fd5b3d81f35b34801561007957600080fd5b5060015461009590600160a01b900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020015b60405180910390f35b3480156100bf57600080fd5b506100c960035481565b6040519081526020016100aa565b3480156100e357600080fd5b506002546100f7906001600160a01b031681565b6040516001600160a01b0390911681526020016100aa565b34801561011b57600080fd5b506001546100f7906001600160a01b03168156fea264697066735822122018b62211c038f69e0d2431ab6cea1f74d62c9e9f6a06adcfc266c29c3e316c7964736f6c63430008130033000000000000000000000000ec25945420c22bf67778dc1837349a62eb0ee846b4805ee6722e311592cd06c931601a909d09e6464e44430aac0beb12b8a38119
Deployed Bytecode
0x60806040526004361061003f5760003560e01c806305b344101461006d57806323491869146100b35780632b20e397146100d75780638da5cb5b1461010f575b6040516000368183378081368460018060a01b038554165af491503d81823e816100695761020481fd5b3d81f35b34801561007957600080fd5b5060015461009590600160a01b900467ffffffffffffffff1681565b60405167ffffffffffffffff90911681526020015b60405180910390f35b3480156100bf57600080fd5b506100c960035481565b6040519081526020016100aa565b3480156100e357600080fd5b506002546100f7906001600160a01b031681565b6040516001600160a01b0390911681526020016100aa565b34801561011b57600080fd5b506001546100f7906001600160a01b03168156fea264697066735822122018b62211c038f69e0d2431ab6cea1f74d62c9e9f6a06adcfc266c29c3e316c7964736f6c63430008130033
Deployed Bytecode Sourcemap
5054:1011:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5730:4;5724:11;5765:1;5768:14;5765:1;5760:3;5747:36;5765:1;;5768:14;5886:3;5842:42;;;;;5765:1;5833:8;5829:56;5823:5;5810:99;5795:114;;5942:16;5765:1;;5921:38;5977:7;5971:36;;5999:5;5765:1;5990:15;5971:36;6029:16;5765:1;6019:27;5145:28;;;;;;;;;;-1:-1:-1;5145:28:0;;;;-1:-1:-1;;;5145:28:0;;;;;;;;;188:18:1;176:31;;;158:50;;146:2;131:18;5145:28:0;;;;;;;;5212:21;;;;;;;;;;;;;;;;;;;365:25:1;;;353:2;338:18;5212:21:0;219:177:1;5180:25:0;;;;;;;;;;-1:-1:-1;5180:25:0;;;;-1:-1:-1;;;;;5180:25:0;;;;;;-1:-1:-1;;;;;580:32:1;;;562:51;;550:2;535:18;5180:25:0;401:218:1;5117:21:0;;;;;;;;;;-1:-1:-1;5117:21:0;;;;-1:-1:-1;;;;;5117:21:0;;
Swarm Source
ipfs://18b62211c038f69e0d2431ab6cea1f74d62c9e9f6a06adcfc266c29c3e316c79
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.