Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xEb51d1B5...33b10Bbe8 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
ConstantInitialVoiceCreditProxy
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import { InitialVoiceCreditProxy } from "./InitialVoiceCreditProxy.sol"; /// @title ConstantInitialVoiceCreditProxy /// @notice This contract allows to set a constant initial voice credit balance /// for MACI's voters. contract ConstantInitialVoiceCreditProxy is InitialVoiceCreditProxy { /// @notice the balance to be returned by getVoiceCredits uint256 internal balance; /// @notice creates a new ConstantInitialVoiceCreditProxy /// @param _balance the balance to be returned by getVoiceCredits constructor(uint256 _balance) payable { balance = _balance; } /// @notice Returns the constant balance for any new MACI's voter /// @return balance function getVoiceCredits(address, bytes memory) public view override returns (uint256) { return balance; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /// @title InitialVoiceCreditProxy /// @notice This contract is the base contract for /// InitialVoiceCreditProxy contracts. It allows to set a custom initial voice /// credit balance for MACI's voters. abstract contract InitialVoiceCreditProxy { /// @notice Returns the initial voice credit balance for a new MACI's voter /// @param _user the address of the voter /// @param _data additional data /// @return the balance // solhint-disable-next-line no-empty-blocks function getVoiceCredits(address _user, bytes memory _data) public view virtual returns (uint256) {} }
{ "optimizer": { "enabled": true, "runs": 200 }, "evmVersion": "paris", "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
[{"inputs":[{"internalType":"uint256","name":"_balance","type":"uint256"}],"stateMutability":"payable","type":"constructor"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"getVoiceCredits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061002b5760003560e01c8063b36543a914610030575b600080fd5b61004661003e36600461006e565b505060005490565b60405190815260200160405180910390f35b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561008157600080fd5b82356001600160a01b038116811461009857600080fd5b9150602083013567ffffffffffffffff808211156100b557600080fd5b818501915085601f8301126100c957600080fd5b8135818111156100db576100db610058565b604051601f8201601f19908116603f0116810190838211818310171561010357610103610058565b8160405282815288602084870101111561011c57600080fd5b826020860160208301376000602084830101528095505050505050925092905056fea2646970667358221220a92d99c9952c5f12388fd909c62d8e60e30a3d7aecf645fd8e85bd992dfc377564736f6c63430008140033
Loading...
Loading
Loading...
Loading
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.