Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 1,653 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 23952940 | 67 days ago | IN | 0 ETH | 0.00000861 | ||||
| Withdraw | 23930087 | 71 days ago | IN | 0 ETH | 0.00007584 | ||||
| Withdraw | 23925511 | 71 days ago | IN | 0 ETH | 0.0001152 | ||||
| Withdraw | 23924204 | 71 days ago | IN | 0 ETH | 0.0001146 | ||||
| Withdraw | 23919404 | 72 days ago | IN | 0 ETH | 0.00005858 | ||||
| Withdraw | 23902341 | 75 days ago | IN | 0 ETH | 0.00001029 | ||||
| Withdraw | 23893612 | 76 days ago | IN | 0 ETH | 0.00014998 | ||||
| Withdraw | 23883486 | 77 days ago | IN | 0 ETH | 0.00011593 | ||||
| Withdraw | 23882043 | 77 days ago | IN | 0 ETH | 0.0000777 | ||||
| Withdraw | 23880265 | 78 days ago | IN | 0 ETH | 0.00015156 | ||||
| Withdraw | 23864187 | 80 days ago | IN | 0 ETH | 0.0001534 | ||||
| Withdraw | 23861814 | 80 days ago | IN | 0 ETH | 0.0000067 | ||||
| Withdraw | 23855900 | 81 days ago | IN | 0 ETH | 0.0001544 | ||||
| Withdraw | 23847358 | 82 days ago | IN | 0 ETH | 0.00027035 | ||||
| Withdraw | 23845316 | 83 days ago | IN | 0 ETH | 0.00000784 | ||||
| Withdraw | 23832373 | 84 days ago | IN | 0 ETH | 0.00015958 | ||||
| Withdraw | 23831255 | 85 days ago | IN | 0 ETH | 0.00007484 | ||||
| Withdraw | 23828758 | 85 days ago | IN | 0 ETH | 0.00011726 | ||||
| Withdraw | 23828420 | 85 days ago | IN | 0 ETH | 0.000045 | ||||
| Withdraw | 23825859 | 85 days ago | IN | 0 ETH | 0.00000602 | ||||
| Withdraw | 23825538 | 85 days ago | IN | 0 ETH | 0.00006621 | ||||
| Withdraw | 23819720 | 86 days ago | IN | 0 ETH | 0.00015617 | ||||
| Withdraw | 23817792 | 86 days ago | IN | 0 ETH | 0.00011746 | ||||
| Withdraw | 23812353 | 87 days ago | IN | 0 ETH | 0.00000649 | ||||
| Withdraw | 23790480 | 90 days ago | IN | 0 ETH | 0.00001447 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
DolaPayroll
Compiler Version
v0.7.3+commit.9bfce1f6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.7.3;
import "@openzeppelin/contracts/token/ERC20/SafeERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract DolaPayroll {
using SafeERC20 for IERC20;
mapping(address => Recipient) public recipients;
address public constant treasuryAddress = 0x926dF14a23BE491164dCF93f4c468A50ef659D5B;
address public constant governance = 0x926dF14a23BE491164dCF93f4c468A50ef659D5B;
IERC20 public constant DOLA = IERC20(0x865377367054516e17014CcdED1e7d814EDC9ce4);
uint256 public yearlyPeriod = 365 days;
address public fundingCommittee = 0x77C64eEF5F4781Dd6e9405a8a77D80567CFD37E0;
struct Recipient {
uint256 lastClaim;
uint256 ratePerSecond;
uint256 startTime;
}
event NewRecipient(address recipient, uint256 amount);
event RecipientRemoved(address recipient, uint256 amount);
event AmountWithdrawn(address recipient, uint256 amount);
event UpdatedFundingCommittee(address from, address to);
constructor() public {}
/**
* @notice Add a new salary recipient. No notion of stop time. payment can be cancelled by committee or governance at any future time
* @param _newRecipient new recipient of salary
* @param _yearlyAmount monthly salary
*/
function addRecipient(address _newRecipient, uint256 _yearlyAmount) external {
require(msg.sender == governance || msg.sender == fundingCommittee, "DolaPayroll::addRecipient: only governance or funding committee!");
require(recipients[_newRecipient].ratePerSecond == 0, "DolaPayroll::addRecipient: recipient already exists!");
require(_newRecipient != address(0), "DolaPayroll::addRecipient: zero address!");
require(_newRecipient != address(this), "DolaPayroll::addRecipient: recipient can't be this contract");
require(_yearlyAmount > 0, "DolaPayroll::addRecipient: amount must be greater than 0");
// ensure amount is gte to month period else, payment rate per second will be 0
require(_yearlyAmount >= yearlyPeriod, "DolaPayroll:addRecipient: amount too low for month period!");
// no notion of end time so using month period, which gov or committee can update. rate per second is calculated on monthly basis
uint256 amountPerSecond = _div256(_yearlyAmount, yearlyPeriod);
recipients[_newRecipient] = Recipient({
lastClaim: 0,
ratePerSecond: amountPerSecond,
startTime: block.timestamp
});
emit NewRecipient(_newRecipient, _yearlyAmount);
}
/**
* @notice Remove recipient from receiving salary
* @param _recipient recipient to whom it may concern
*/
function removeRecipient(address _recipient) external {
require(msg.sender == governance || msg.sender == fundingCommittee || msg.sender == _recipient, "DolaPayroll::removeRecipient: only governance or funding committee");
require(recipients[_recipient].ratePerSecond != 0, "DolaPayroll::removeRecipient: recipient does not exist!");
// calculate remaining balances and delete recipient entry from recipients mapping, then transfer remaining dola to recipient
Recipient memory recipient = recipients[_recipient];
uint256 delta = _delta(_recipient);
uint256 amount;
if (delta > 0) {
// transfer remaining unclaimed to recipient
amount = _balanceOf(_recipient, delta);
DOLA.safeTransferFrom(treasuryAddress, _recipient, amount);
}
delete recipients[_recipient];
emit RecipientRemoved(_recipient, amount);
}
/**
* @notice withdraw salary
*/
function withdraw() external {
require(recipients[msg.sender].ratePerSecond != 0, "DolaPayroll::withdraw: not a recipient!");
uint256 delta = _delta(msg.sender);
require(delta > 0, "DolayPayroll::withdraw: not enough time elapsed!");
Recipient storage recipient = recipients[msg.sender];
recipient.lastClaim = block.timestamp;
uint256 amount = _balanceOf(msg.sender, delta);
DOLA.safeTransferFrom(treasuryAddress, msg.sender, amount);
emit AmountWithdrawn(msg.sender, amount);
}
function _delta(address _recipient) internal view returns (uint256) {
Recipient memory recipient = recipients[_recipient];
if (recipient.startTime >= block.timestamp) return 0;
uint256 delta;
if (recipient.lastClaim == 0) {
delta = _sub256(block.timestamp, recipient.startTime);
} else {
delta = _sub256(block.timestamp, recipient.lastClaim);
}
return delta;
}
/**
* @notice Update funding committee
* @param _newFundingCommittee The new funding committee address
*/
function updateFundingCommittee(address _newFundingCommittee) external {
require(msg.sender == governance, "DolaPayroll::updateFundingCommittee: only governance!");
require(_newFundingCommittee != address(0), "DolaPayroll::updateFundingCommittee: address 0!");
require(_newFundingCommittee != address(this), "DolaPayroll::updateFundingCommittee: payroll address");
address from = fundingCommittee;
fundingCommittee = _newFundingCommittee;
emit UpdatedFundingCommittee(from, _newFundingCommittee);
}
/**
* @notice check balance of salary recipient at current block time
* @param _recipient address of salary recipient
*/
function balanceOf(address _recipient) external view returns (uint256) {
uint256 delta = _delta(_recipient);
if (delta == 0) return 0;
return _balanceOf(_recipient, delta);
}
// avoid recalculating delta
function _balanceOf(address _recipient, uint256 delta) internal view returns (uint256) {
Recipient memory recipient = recipients[_recipient];
return _mul256(recipient.ratePerSecond, delta);
}
function _mul256(uint256 a, uint256 b) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "multiplication overflow");
return c;
}
function _div256(uint256 a, uint256 b) internal pure returns (uint256) {
require(b != 0, "division by 0");
uint256 c = a / b;
return c;
}
function _add256(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "addition overflow");
return c;
}
function _sub256(uint256 a, uint256 b) internal pure returns (uint256) {
require(b <= a, "subtraction underflow");
uint256 c = a - b;
return c;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
import "./IERC20.sol";
import "../../math/SafeMath.sol";
import "../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using SafeMath for uint256;
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(IERC20 token, address spender, uint256 value) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
// solhint-disable-next-line max-line-length
require((value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).add(value);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) { // Return data is optional
// solhint-disable-next-line max-line-length
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.0 <0.8.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 {
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
return 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}// SPDX-License-Identifier: MIT
pragma solidity >=0.6.2 <0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
// solhint-disable-next-line no-inline-assembly
assembly { size := extcodesize(account) }
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-low-level-calls, avoid-call-value
(bool success, ) = recipient.call{ value: amount }("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain`call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.call{ value: value }(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
// solhint-disable-next-line avoid-low-level-calls
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
// solhint-disable-next-line no-inline-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"AmountWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"NewRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RecipientRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"}],"name":"UpdatedFundingCommittee","type":"event"},{"inputs":[],"name":"DOLA","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newRecipient","type":"address"},{"internalType":"uint256","name":"_yearlyAmount","type":"uint256"}],"name":"addRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundingCommittee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"recipients","outputs":[{"internalType":"uint256","name":"lastClaim","type":"uint256"},{"internalType":"uint256","name":"ratePerSecond","type":"uint256"},{"internalType":"uint256","name":"startTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"removeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newFundingCommittee","type":"address"}],"name":"updateFundingCommittee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"yearlyPeriod","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]Contract Creation Code
60806040526301e133806001557377c64eef5f4781dd6e9405a8a77d80567cfd37e0600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555034801561006d57600080fd5b50611ad18061007d6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c806370a082311161007157806370a082311461019257806392c592d0146101ea578063c5f956af1461021e578063eb82031214610252578063ee2057ba146102b8578063f7982243146102ec576100a9565b806312a29198146100ae5780631fc9d53c146100f25780633ccfd60b146101105780635aa6e6751461011a5780636c93592a1461014e575b600080fd5b6100f0600480360360208110156100c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061033a565b005b6100fa610699565b6040518082815260200191505060405180910390f35b61011861069f565b005b6101226108a8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101906004803603602081101561016457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108c0565b005b6101d4600480360360208110156101a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b3a565b6040518082815260200191505060405180910390f35b6101f2610b6e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610226610b86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102946004803603602081101561026857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b9e565b60405180848152602001838152602001828152602001935050505060405180910390f35b6102c0610bc8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103386004803603604081101561030257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bee565b005b73926df14a23be491164dcf93f4c468a50ef659d5b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806103d55750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061040b57508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604281526020018061180a6042913960600191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015414156104fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806119296037913960400191505060405180910390fd5b610503611779565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820154815260200160018201548152602001600282015481525050905060006105778361101c565b90506000808211156105e55761058d84836110e3565b90506105e473926df14a23be491164dcf93f4c468a50ef659d5b858373865377367054516e17014ccded1e7d814edc9ce473ffffffffffffffffffffffffffffffffffffffff1661116d909392919063ffffffff16565b5b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160009055600282016000905550507fc6c819db8accfc3c7389ec00b5054724dbac74415386a12dc43e4b7dbd9c3ee78482604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a150505050565b60015481565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154141561073a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806118ce6027913960400191505060405180910390fd5b60006107453361101c565b9050600081116107a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806119606030913960400191505060405180910390fd5b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905042816000018190555060006107f733846110e3565b905061084e73926df14a23be491164dcf93f4c468a50ef659d5b338373865377367054516e17014ccded1e7d814edc9ce473ffffffffffffffffffffffffffffffffffffffff1661116d909392919063ffffffff16565b7f058b581e2433b8b02263f5b0e5c2889fcb7b3495112884a3147619038fba46d83382604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b73926df14a23be491164dcf93f4c468a50ef659d5b81565b73926df14a23be491164dcf93f4c468a50ef659d5b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061179b6035913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806119c8602f913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806118f56034913960400191505060405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fc905cdfceb9b063d0ad0fd0548a8f9e23a500960dd8ceac60728a9b8e025ef1a8183604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15050565b600080610b468361101c565b90506000811415610b5b576000915050610b69565b610b6583826110e3565b9150505b919050565b73865377367054516e17014ccded1e7d814edc9ce481565b73926df14a23be491164dcf93f4c468a50ef659d5b81565b60006020528060005260406000206000915090508060000154908060010154908060020154905083565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b73926df14a23be491164dcf93f4c468a50ef659d5b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c895750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806119f76040913960400191505060405180910390fd5b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015414610d78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806118726034913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806118a66028913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180611a61603b913960400191505060405180910390fd5b60008111610edc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806119906038913960400191505060405180910390fd5b600154811015610f37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806117d0603a913960400191505060405180910390fd5b6000610f458260015461122e565b9050604051806060016040528060008152602001828152602001428152506000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155604082015181600201559050507f182e1c0b34607d1b7c3312ff9a78e613c0a4c045d1460fd236374d04b5c2954f8383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b6000611026611779565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050428160400151106110a45760009150506110de565b600080826000015114156110c7576110c04283604001516112be565b90506110d8565b6110d54283600001516112be565b90505b80925050505b919050565b60006110ed611779565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050611164816020015184611347565b91505092915050565b611228846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506113ea565b50505050565b6000808214156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6469766973696f6e20627920300000000000000000000000000000000000000081525060200191505060405180910390fd5b60008284816112b157fe5b0490508091505092915050565b600082821115611336576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f7375627472616374696f6e20756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008083141561135a57600090506113e4565b600082840290508284828161136b57fe5b04146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f6d756c7469706c69636174696f6e206f766572666c6f7700000000000000000081525060200191505060405180910390fd5b809150505b92915050565b606061144c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166114d99092919063ffffffff16565b90506000815111156114d45780806020019051602081101561146d57600080fd5b81019080805190602001909291905050506114d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180611a37602a913960400191505060405180910390fd5b5b505050565b60606114e884846000856114f1565b90509392505050565b60608247101561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061184c6026913960400191505060405180910390fd5b6115558561169a565b6115c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061161757805182526020820191506020810190506020830392506115f4565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611679576040519150601f19603f3d011682016040523d82523d6000602084013e61167e565b606091505b509150915061168e8282866116ad565b92505050949350505050565b600080823b905060008111915050919050565b606083156116bd57829050611772565b6000835111156116d05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561173757808201518184015260208101905061171c565b50505050905090810190601f1680156117645780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b6040518060600160405280600081526020016000815260200160008152509056fe446f6c61506179726f6c6c3a3a75706461746546756e64696e67436f6d6d69747465653a206f6e6c7920676f7665726e616e636521446f6c61506179726f6c6c3a616464526563697069656e743a20616d6f756e7420746f6f206c6f7720666f72206d6f6e746820706572696f6421446f6c61506179726f6c6c3a3a72656d6f7665526563697069656e743a206f6e6c7920676f7665726e616e6365206f722066756e64696e6720636f6d6d6974746565416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c446f6c61506179726f6c6c3a3a616464526563697069656e743a20726563697069656e7420616c72656164792065786973747321446f6c61506179726f6c6c3a3a616464526563697069656e743a207a65726f206164647265737321446f6c61506179726f6c6c3a3a77697468647261773a206e6f74206120726563697069656e7421446f6c61506179726f6c6c3a3a75706461746546756e64696e67436f6d6d69747465653a20706179726f6c6c2061646472657373446f6c61506179726f6c6c3a3a72656d6f7665526563697069656e743a20726563697069656e7420646f6573206e6f7420657869737421446f6c6179506179726f6c6c3a3a77697468647261773a206e6f7420656e6f7567682074696d6520656c617073656421446f6c61506179726f6c6c3a3a616464526563697069656e743a20616d6f756e74206d7573742062652067726561746572207468616e2030446f6c61506179726f6c6c3a3a75706461746546756e64696e67436f6d6d69747465653a2061646472657373203021446f6c61506179726f6c6c3a3a616464526563697069656e743a206f6e6c7920676f7665726e616e6365206f722066756e64696e6720636f6d6d6974746565215361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564446f6c61506179726f6c6c3a3a616464526563697069656e743a20726563697069656e742063616e2774206265207468697320636f6e7472616374a264697066735822122094ba7b79e6ba92b517dd7fdc18d61252effc130fcff2355b91768bef14ca24dc64736f6c63430007030033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100a95760003560e01c806370a082311161007157806370a082311461019257806392c592d0146101ea578063c5f956af1461021e578063eb82031214610252578063ee2057ba146102b8578063f7982243146102ec576100a9565b806312a29198146100ae5780631fc9d53c146100f25780633ccfd60b146101105780635aa6e6751461011a5780636c93592a1461014e575b600080fd5b6100f0600480360360208110156100c457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061033a565b005b6100fa610699565b6040518082815260200191505060405180910390f35b61011861069f565b005b6101226108a8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6101906004803603602081101561016457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506108c0565b005b6101d4600480360360208110156101a857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b3a565b6040518082815260200191505060405180910390f35b6101f2610b6e565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610226610b86565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6102946004803603602081101561026857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610b9e565b60405180848152602001838152602001828152602001935050505060405180910390f35b6102c0610bc8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103386004803603604081101561030257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bee565b005b73926df14a23be491164dcf93f4c468a50ef659d5b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806103d55750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b8061040b57508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610460576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252604281526020018061180a6042913960600191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015414156104fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260378152602001806119296037913960400191505060405180910390fd5b610503611779565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060600160405290816000820154815260200160018201548152602001600282015481525050905060006105778361101c565b90506000808211156105e55761058d84836110e3565b90506105e473926df14a23be491164dcf93f4c468a50ef659d5b858373865377367054516e17014ccded1e7d814edc9ce473ffffffffffffffffffffffffffffffffffffffff1661116d909392919063ffffffff16565b5b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000808201600090556001820160009055600282016000905550507fc6c819db8accfc3c7389ec00b5054724dbac74415386a12dc43e4b7dbd9c3ee78482604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a150505050565b60015481565b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154141561073a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806118ce6027913960400191505060405180910390fd5b60006107453361101c565b9050600081116107a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001806119606030913960400191505060405180910390fd5b60008060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905042816000018190555060006107f733846110e3565b905061084e73926df14a23be491164dcf93f4c468a50ef659d5b338373865377367054516e17014ccded1e7d814edc9ce473ffffffffffffffffffffffffffffffffffffffff1661116d909392919063ffffffff16565b7f058b581e2433b8b02263f5b0e5c2889fcb7b3495112884a3147619038fba46d83382604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b73926df14a23be491164dcf93f4c468a50ef659d5b81565b73926df14a23be491164dcf93f4c468a50ef659d5b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603581526020018061179b6035913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602f8152602001806119c8602f913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806118f56034913960400191505060405180910390fd5b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fc905cdfceb9b063d0ad0fd0548a8f9e23a500960dd8ceac60728a9b8e025ef1a8183604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff1681526020019250505060405180910390a15050565b600080610b468361101c565b90506000811415610b5b576000915050610b69565b610b6583826110e3565b9150505b919050565b73865377367054516e17014ccded1e7d814edc9ce481565b73926df14a23be491164dcf93f4c468a50ef659d5b81565b60006020528060005260406000206000915090508060000154908060010154908060020154905083565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b73926df14a23be491164dcf93f4c468a50ef659d5b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610c895750600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610cde576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260408152602001806119f76040913960400191505060405180910390fd5b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015414610d78576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806118726034913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610dfe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001806118a66028913960400191505060405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603b815260200180611a61603b913960400191505060405180910390fd5b60008111610edc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260388152602001806119906038913960400191505060405180910390fd5b600154811015610f37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603a8152602001806117d0603a913960400191505060405180910390fd5b6000610f458260015461122e565b9050604051806060016040528060008152602001828152602001428152506000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000820151816000015560208201518160010155604082015181600201559050507f182e1c0b34607d1b7c3312ff9a78e613c0a4c045d1460fd236374d04b5c2954f8383604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505050565b6000611026611779565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050428160400151106110a45760009150506110de565b600080826000015114156110c7576110c04283604001516112be565b90506110d8565b6110d54283600001516112be565b90505b80925050505b919050565b60006110ed611779565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060405180606001604052908160008201548152602001600182015481526020016002820154815250509050611164816020015184611347565b91505092915050565b611228846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506113ea565b50505050565b6000808214156112a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600d8152602001807f6469766973696f6e20627920300000000000000000000000000000000000000081525060200191505060405180910390fd5b60008284816112b157fe5b0490508091505092915050565b600082821115611336576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260158152602001807f7375627472616374696f6e20756e646572666c6f77000000000000000000000081525060200191505060405180910390fd5b600082840390508091505092915050565b60008083141561135a57600090506113e4565b600082840290508284828161136b57fe5b04146113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260178152602001807f6d756c7469706c69636174696f6e206f766572666c6f7700000000000000000081525060200191505060405180910390fd5b809150505b92915050565b606061144c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166114d99092919063ffffffff16565b90506000815111156114d45780806020019051602081101561146d57600080fd5b81019080805190602001909291905050506114d3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180611a37602a913960400191505060405180910390fd5b5b505050565b60606114e884846000856114f1565b90509392505050565b60608247101561154c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061184c6026913960400191505060405180910390fd5b6115558561169a565b6115c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b6020831061161757805182526020820191506020810190506020830392506115f4565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611679576040519150601f19603f3d011682016040523d82523d6000602084013e61167e565b606091505b509150915061168e8282866116ad565b92505050949350505050565b600080823b905060008111915050919050565b606083156116bd57829050611772565b6000835111156116d05782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561173757808201518184015260208101905061171c565b50505050905090810190601f1680156117645780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b9392505050565b6040518060600160405280600081526020016000815260200160008152509056fe446f6c61506179726f6c6c3a3a75706461746546756e64696e67436f6d6d69747465653a206f6e6c7920676f7665726e616e636521446f6c61506179726f6c6c3a616464526563697069656e743a20616d6f756e7420746f6f206c6f7720666f72206d6f6e746820706572696f6421446f6c61506179726f6c6c3a3a72656d6f7665526563697069656e743a206f6e6c7920676f7665726e616e6365206f722066756e64696e6720636f6d6d6974746565416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c446f6c61506179726f6c6c3a3a616464526563697069656e743a20726563697069656e7420616c72656164792065786973747321446f6c61506179726f6c6c3a3a616464526563697069656e743a207a65726f206164647265737321446f6c61506179726f6c6c3a3a77697468647261773a206e6f74206120726563697069656e7421446f6c61506179726f6c6c3a3a75706461746546756e64696e67436f6d6d69747465653a20706179726f6c6c2061646472657373446f6c61506179726f6c6c3a3a72656d6f7665526563697069656e743a20726563697069656e7420646f6573206e6f7420657869737421446f6c6179506179726f6c6c3a3a77697468647261773a206e6f7420656e6f7567682074696d6520656c617073656421446f6c61506179726f6c6c3a3a616464526563697069656e743a20616d6f756e74206d7573742062652067726561746572207468616e2030446f6c61506179726f6c6c3a3a75706461746546756e64696e67436f6d6d69747465653a2061646472657373203021446f6c61506179726f6c6c3a3a616464526563697069656e743a206f6e6c7920676f7665726e616e6365206f722066756e64696e6720636f6d6d6974746565215361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564446f6c61506179726f6c6c3a3a616464526563697069656e743a20726563697069656e742063616e2774206265207468697320636f6e7472616374a264697066735822122094ba7b79e6ba92b517dd7fdc18d61252effc130fcff2355b91768bef14ca24dc64736f6c63430007030033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 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.