Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 502 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Forward ERC20 | 21220346 | 37 days ago | IN | 0 ETH | 0.00196672 | ||||
Swap And Forward... | 21184458 | 42 days ago | IN | 0.01 ETH | 0.01305931 | ||||
Forward ERC20 | 20974908 | 71 days ago | IN | 0 ETH | 0.00237489 | ||||
Forward ERC20 | 20638890 | 118 days ago | IN | 0 ETH | 0.00019308 | ||||
Forward ERC20 | 20588616 | 125 days ago | IN | 0 ETH | 0.00025776 | ||||
Swap And Forward... | 20547592 | 131 days ago | IN | 0.0005 ETH | 0.0004401 | ||||
Swap And Forward... | 20452079 | 144 days ago | IN | 0.0006 ETH | 0.00017437 | ||||
Forward ERC20 | 20300941 | 165 days ago | IN | 0 ETH | 0.00230497 | ||||
Forward ERC20 | 20259677 | 171 days ago | IN | 0 ETH | 0.00037106 | ||||
Forward ERC20 | 20259562 | 171 days ago | IN | 0 ETH | 0.00032503 | ||||
Swap And Forward... | 20239066 | 174 days ago | IN | 0 ETH | 0.00533999 | ||||
Swap And Forward... | 20224777 | 176 days ago | IN | 0 ETH | 0.00177239 | ||||
Forward ERC20 | 20192427 | 181 days ago | IN | 0 ETH | 0.00051124 | ||||
Forward ERC20 | 20152680 | 186 days ago | IN | 0 ETH | 0.00042661 | ||||
Swap And Forward... | 20120676 | 191 days ago | IN | 0.005 ETH | 0.00356338 | ||||
Forward ERC20 | 20050757 | 200 days ago | IN | 0 ETH | 0.0010268 | ||||
Forward ERC20 | 19957205 | 213 days ago | IN | 0 ETH | 0.00093024 | ||||
Forward ERC20 | 19915578 | 219 days ago | IN | 0 ETH | 0.00217558 | ||||
Swap And Forward... | 19911145 | 220 days ago | IN | 0 ETH | 0.00211519 | ||||
Swap And Forward... | 19892199 | 222 days ago | IN | 0 ETH | 0.00120474 | ||||
Forward ERC20 | 19863857 | 226 days ago | IN | 0 ETH | 0.00113259 | ||||
Swap And Forward... | 19819506 | 233 days ago | IN | 0.05 ETH | 0.0030603 | ||||
Forward ERC20 | 19798313 | 236 days ago | IN | 0 ETH | 0.00121758 | ||||
Swap And Forward... | 19798162 | 236 days ago | IN | 0.6 ETH | 0.0029225 | ||||
Swap And Forward... | 19797810 | 236 days ago | IN | 1.2 ETH | 0.00249313 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21184458 | 42 days ago | 0.01 ETH | ||||
20547592 | 131 days ago | 0.0005 ETH | ||||
20452079 | 144 days ago | 0.0006 ETH | ||||
20120676 | 191 days ago | 0.005 ETH | ||||
19819506 | 233 days ago | 0.05 ETH | ||||
19798162 | 236 days ago | 0.6 ETH | ||||
19797810 | 236 days ago | 1.2 ETH | ||||
19797641 | 236 days ago | 1 ETH | ||||
19797408 | 236 days ago | 1 ETH | ||||
19797245 | 236 days ago | 2.2 ETH | ||||
19797061 | 236 days ago | 15 ETH | ||||
19796386 | 236 days ago | 26.23 ETH | ||||
19796259 | 236 days ago | 0.003 ETH | ||||
19795372 | 236 days ago | 0.75 ETH | ||||
19795244 | 236 days ago | 5.2 ETH | ||||
19794295 | 236 days ago | 1 ETH | ||||
19791614 | 237 days ago | 0.003 ETH | ||||
19791374 | 237 days ago | 7.8 ETH | ||||
19791222 | 237 days ago | 2.64222674 ETH | ||||
19790459 | 237 days ago | 2.591 ETH | ||||
19790071 | 237 days ago | 2 ETH | ||||
19788177 | 237 days ago | 0.8 ETH | ||||
19786619 | 237 days ago | 0.702 ETH | ||||
19786596 | 237 days ago | 1.99 ETH | ||||
19786565 | 237 days ago | 4.12 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xa257398B...7275dcBCb The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
MayanForwarder
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol"; import "./libs/BytesLib.sol"; contract MayanForwarder { using SafeERC20 for IERC20; using BytesLib for bytes; event SwapAndForwarded(uint256 amount); address public guardian; address public nextGuardian; mapping(address => bool) public swapProtocols; mapping(address => bool) public mayanProtocols; error UnsupportedProtocol(); struct PermitParams { uint256 value; uint256 deadline; uint8 v; bytes32 r; bytes32 s; } constructor(address _guardian, address[] memory _swapProtocols, address[] memory _mayanProtocols) { guardian = _guardian; for (uint256 i = 0; i < _swapProtocols.length; i++) { swapProtocols[_swapProtocols[i]] = true; } for (uint256 i = 0; i < _mayanProtocols.length; i++) { mayanProtocols[_mayanProtocols[i]] = true; } } function forwardEth( address mayanProtocol, bytes calldata protocolData ) external payable { if (!mayanProtocols[mayanProtocol]) { revert UnsupportedProtocol(); } (bool success, bytes memory returnedData) = mayanProtocol.call{value: msg.value}(protocolData); require(success, string(returnedData)); } function forwardERC20( address tokenIn, uint256 amountIn, PermitParams calldata permitParams, address mayanProtocol, bytes calldata protocolData ) external payable { if (!mayanProtocols[mayanProtocol]) { revert UnsupportedProtocol(); } uint256 allowance = IERC20(tokenIn).allowance(msg.sender, address(this)); if (allowance < amountIn) { execPermit(tokenIn, msg.sender, address(this), permitParams); } IERC20(tokenIn).safeTransferFrom(msg.sender, address(this), amountIn); maxApproveIfNeeded(tokenIn, mayanProtocol, amountIn); (bool success, bytes memory returnedData) = mayanProtocol.call{value: msg.value}(protocolData); require(success, string(returnedData)); } function swapAndForwardEth( uint256 amountIn, address swapProtocol, bytes calldata swapData, address middleToken, uint256 minMiddleAmount, address mayanProtocol, bytes calldata mayanData ) external payable { if (!swapProtocols[swapProtocol] || !mayanProtocols[mayanProtocol]) { revert UnsupportedProtocol(); } require(middleToken != address(0), "middleToken cannot be zero address"); require(msg.value >= amountIn, "insufficient amountIn"); uint256 middleAmount = IERC20(middleToken).balanceOf(address(this)); (bool success, bytes memory returnedData) = swapProtocol.call{value: amountIn}(swapData); require(success, string(returnedData)); middleAmount = IERC20(middleToken).balanceOf(address(this)) - middleAmount; require(middleAmount >= minMiddleAmount, "MayanForwarder: insufficient middle token amount"); maxApproveIfNeeded(middleToken, mayanProtocol, middleAmount); bytes memory modifiedData = replaceMiddleAmount(mayanData, middleAmount); (success, returnedData) = mayanProtocol.call{value: msg.value - amountIn}(modifiedData); require(success, string(returnedData)); emit SwapAndForwarded(middleAmount); } function swapAndForwardERC20( address tokenIn, uint256 amountIn, PermitParams calldata permitParams, address swapProtocol, bytes calldata swapData, address middleToken, uint256 minMiddleAmount, address mayanProtocol, bytes calldata mayanData ) external payable { if (!swapProtocols[swapProtocol] || !mayanProtocols[mayanProtocol]) { revert UnsupportedProtocol(); } require(tokenIn != middleToken, "tokenIn and tokenOut must be different"); uint256 allowance = IERC20(tokenIn).allowance(msg.sender, address(this)); if (allowance < amountIn) { execPermit(tokenIn, msg.sender, address(this), permitParams); } IERC20(tokenIn).safeTransferFrom(msg.sender, address(this), amountIn); maxApproveIfNeeded(tokenIn, swapProtocol, amountIn); uint256 middleAmount = IERC20(middleToken).balanceOf(address(this)); (bool success, bytes memory returnedData) = swapProtocol.call{value: 0}(swapData); require(success, string(returnedData)); middleAmount = IERC20(middleToken).balanceOf(address(this)) - middleAmount; require(middleAmount >= minMiddleAmount, "insufficient middle token"); maxApproveIfNeeded(middleToken, mayanProtocol, middleAmount); bytes memory modifiedData = replaceMiddleAmount(mayanData, middleAmount); (success, returnedData) = mayanProtocol.call{value: msg.value}(modifiedData); require(success, string(returnedData)); emit SwapAndForwarded(middleAmount); } function replaceMiddleAmount(bytes calldata mayanData, uint256 middleAmount) internal pure returns(bytes memory) { require(mayanData.length >= 68, "Mayan data too short"); bytes memory modifiedData = new bytes(mayanData.length); // Copy the function selector and token in for (uint i = 0; i < 36; i++) { modifiedData[i] = mayanData[i]; } // Encode the amount and place it into the modified call data // Starting from byte 36 to byte 67 (32 bytes for uint256) bytes memory encodedAmount = abi.encode(middleAmount); for (uint i = 0; i < 32; i++) { modifiedData[i + 36] = encodedAmount[i]; } // Copy the rest of the original data after the first argument for (uint i = 68; i < mayanData.length; i++) { modifiedData[i] = mayanData[i]; } return modifiedData; } function maxApproveIfNeeded(address tokenAddr, address spender, uint256 amount) internal { IERC20 token = IERC20(tokenAddr); uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < amount) { token.safeApprove(spender, 0); token.safeApprove(spender, type(uint256).max); } } function execPermit( address token, address owner, address spender, PermitParams calldata permitParams ) internal { IERC20Permit(token).permit( owner, spender, permitParams.value, permitParams.deadline, permitParams.v, permitParams.r, permitParams.s ); } function rescueToken(address token, uint256 amount, address to) public { require(msg.sender == guardian, 'only guardian'); IERC20(token).safeTransfer(to, amount); } function changeGuardian(address newGuardian) public { require(msg.sender == guardian, 'only guardian'); nextGuardian = newGuardian; } function claimGuardian() public { require(msg.sender == nextGuardian, 'only next guardian'); guardian = nextGuardian; } function setSwapProtocol(address swapProtocol, bool enabled) public { require(msg.sender == guardian, 'only guardian'); swapProtocols[swapProtocol] = enabled; } function setMayanProtocol(address mayanProtocol, bool enabled) public { require(msg.sender == guardian, 'only guardian'); mayanProtocols[mayanProtocol] = enabled; } }
// SPDX-License-Identifier: Unlicense /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.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 Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ 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' 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)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @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). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // 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 cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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://consensys.net/diligence/blog/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.8.0/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"); (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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_guardian","type":"address"},{"internalType":"address[]","name":"_swapProtocols","type":"address[]"},{"internalType":"address[]","name":"_mayanProtocols","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"UnsupportedProtocol","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapAndForwarded","type":"event"},{"inputs":[{"internalType":"address","name":"newGuardian","type":"address"}],"name":"changeGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimGuardian","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct MayanForwarder.PermitParams","name":"permitParams","type":"tuple"},{"internalType":"address","name":"mayanProtocol","type":"address"},{"internalType":"bytes","name":"protocolData","type":"bytes"}],"name":"forwardERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"mayanProtocol","type":"address"},{"internalType":"bytes","name":"protocolData","type":"bytes"}],"name":"forwardEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"guardian","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mayanProtocols","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextGuardian","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"rescueToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"mayanProtocol","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setMayanProtocol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"swapProtocol","type":"address"},{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapProtocol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"components":[{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct MayanForwarder.PermitParams","name":"permitParams","type":"tuple"},{"internalType":"address","name":"swapProtocol","type":"address"},{"internalType":"bytes","name":"swapData","type":"bytes"},{"internalType":"address","name":"middleToken","type":"address"},{"internalType":"uint256","name":"minMiddleAmount","type":"uint256"},{"internalType":"address","name":"mayanProtocol","type":"address"},{"internalType":"bytes","name":"mayanData","type":"bytes"}],"name":"swapAndForwardERC20","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address","name":"swapProtocol","type":"address"},{"internalType":"bytes","name":"swapData","type":"bytes"},{"internalType":"address","name":"middleToken","type":"address"},{"internalType":"uint256","name":"minMiddleAmount","type":"uint256"},{"internalType":"address","name":"mayanProtocol","type":"address"},{"internalType":"bytes","name":"mayanData","type":"bytes"}],"name":"swapAndForwardEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"swapProtocols","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Deployed Bytecode
0x6080604052600436106100c25760003560e01c8063a44382fe1161007f578063e4269fc411610059578063e4269fc414610201578063f8a67a6214610214578063fa74fd4314610234578063ffe805411461024757600080fd5b8063a44382fe1461018e578063af56ca03146101ae578063b0f584ff146101ee57600080fd5b80632fcb4f04146100c757806330dedc57146100e9578063452a9320146100fc578063459656ee146101395780634818e84d1461014e5780637fc920eb1461016e575b600080fd5b3480156100d357600080fd5b506100e76100e2366004611706565b610277565b005b6100e76100f7366004611869565b6102cc565b34801561010857600080fd5b5060005461011c906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561014557600080fd5b506100e761070a565b34801561015a57600080fd5b5060015461011c906001600160a01b031681565b34801561017a57600080fd5b506100e7610189366004611727565b61077d565b34801561019a57600080fd5b506100e76101a9366004611727565b6107d2565b3480156101ba57600080fd5b506101de6101c9366004611706565b60036020526000908152604090205460ff1681565b6040519015158152602001610130565b6100e76101fc36600461175d565b610827565b6100e761020f3660046117e9565b6108ed565b34801561022057600080fd5b506100e761022f3660046117ae565b610a6d565b6100e761024236600461197e565b610ab0565b34801561025357600080fd5b506101de610262366004611706565b60026020526000908152604090205460ff1681565b6000546001600160a01b031633146102aa5760405162461bcd60e51b81526004016102a190611ab5565b60405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03881660009081526002602052604090205460ff16158061030d57506001600160a01b03831660009081526003602052604090205460ff16155b1561032b5760405163743f26e160e01b815260040160405180910390fd5b846001600160a01b03168b6001600160a01b0316141561039c5760405162461bcd60e51b815260206004820152602660248201527f746f6b656e496e20616e6420746f6b656e4f7574206d7573742062652064696660448201526519995c995b9d60d21b60648201526084016102a1565b604051636eb1769f60e11b81523360048201523060248201526000906001600160a01b038d169063dd62ed3e9060440160206040518083038186803b1580156103e457600080fd5b505afa1580156103f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061041c9190611966565b90508a811015610432576104328c33308d610e8e565b6104476001600160a01b038d1633308e610f47565b6104528c8a8d610fb8565b6040516370a0823160e01b81523060048201526000906001600160a01b038816906370a082319060240160206040518083038186803b15801561049457600080fd5b505afa1580156104a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104cc9190611966565b90506000808b6001600160a01b031660008c8c6040516104ed929190611a56565b60006040518083038185875af1925050503d806000811461052a576040519150601f19603f3d011682016040523d82523d6000602084013e61052f565b606091505b50915091508181906105545760405162461bcd60e51b81526004016102a19190611a82565b506040516370a0823160e01b815230600482015283906001600160a01b038b16906370a082319060240160206040518083038186803b15801561059657600080fd5b505afa1580156105aa573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ce9190611966565b6105d89190611af4565b92508783101561062a5760405162461bcd60e51b815260206004820152601960248201527f696e73756666696369656e74206d6964646c6520746f6b656e0000000000000060448201526064016102a1565b610635898885610fb8565b6000610642878786611078565b9050876001600160a01b0316348260405161065d9190611a66565b60006040518083038185875af1925050503d806000811461069a576040519150601f19603f3d011682016040523d82523d6000602084013e61069f565b606091505b50909350915081836106c45760405162461bcd60e51b81526004016102a19190611a82565b506040518481527ffe4e324d6c3c393853951b3712eb58370dd79d26cd12851f51a33161d31f3ee49060200160405180910390a150505050505050505050505050505050565b6001546001600160a01b031633146107595760405162461bcd60e51b815260206004820152601260248201527137b7363c903732bc3a1033bab0b93234b0b760711b60448201526064016102a1565b600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000546001600160a01b031633146107a75760405162461bcd60e51b81526004016102a190611ab5565b6001600160a01b03919091166000908152600260205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146107fc5760405162461bcd60e51b81526004016102a190611ab5565b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b6001600160a01b03831660009081526003602052604090205460ff166108605760405163743f26e160e01b815260040160405180910390fd5b600080846001600160a01b031634858560405161087e929190611a56565b60006040518083038185875af1925050503d80600081146108bb576040519150601f19603f3d011682016040523d82523d6000602084013e6108c0565b606091505b50915091508181906108e55760405162461bcd60e51b81526004016102a19190611a82565b505050505050565b6001600160a01b03831660009081526003602052604090205460ff166109265760405163743f26e160e01b815260040160405180910390fd5b604051636eb1769f60e11b81523360048201523060248201526000906001600160a01b0388169063dd62ed3e9060440160206040518083038186803b15801561096e57600080fd5b505afa158015610982573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a69190611966565b9050858110156109bc576109bc87333088610e8e565b6109d16001600160a01b038816333089610f47565b6109dc878588610fb8565b600080856001600160a01b03163486866040516109fa929190611a56565b60006040518083038185875af1925050503d8060008114610a37576040519150601f19603f3d011682016040523d82523d6000602084013e610a3c565b606091505b5091509150818190610a615760405162461bcd60e51b81526004016102a19190611a82565b50505050505050505050565b6000546001600160a01b03163314610a975760405162461bcd60e51b81526004016102a190611ab5565b610aab6001600160a01b03841682846112d6565b505050565b6001600160a01b03881660009081526002602052604090205460ff161580610af157506001600160a01b03831660009081526003602052604090205460ff16155b15610b0f5760405163743f26e160e01b815260040160405180910390fd5b6001600160a01b038516610b705760405162461bcd60e51b815260206004820152602260248201527f6d6964646c65546f6b656e2063616e6e6f74206265207a65726f206164647265604482015261737360f01b60648201526084016102a1565b88341015610bb85760405162461bcd60e51b815260206004820152601560248201527434b739bab33334b1b4b2b73a1030b6b7bab73a24b760591b60448201526064016102a1565b6040516370a0823160e01b81523060048201526000906001600160a01b038716906370a082319060240160206040518083038186803b158015610bfa57600080fd5b505afa158015610c0e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c329190611966565b90506000808a6001600160a01b03168c8b8b604051610c52929190611a56565b60006040518083038185875af1925050503d8060008114610c8f576040519150601f19603f3d011682016040523d82523d6000602084013e610c94565b606091505b5091509150818190610cb95760405162461bcd60e51b81526004016102a19190611a82565b506040516370a0823160e01b815230600482015283906001600160a01b038a16906370a082319060240160206040518083038186803b158015610cfb57600080fd5b505afa158015610d0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d339190611966565b610d3d9190611af4565b925086831015610da85760405162461bcd60e51b815260206004820152603060248201527f4d6179616e466f727761726465723a20696e73756666696369656e74206d696460448201526f191b19481d1bdad95b88185b5bdd5b9d60821b60648201526084016102a1565b610db3888785610fb8565b6000610dc0868686611078565b90506001600160a01b038716610dd68e34611af4565b82604051610de49190611a66565b60006040518083038185875af1925050503d8060008114610e21576040519150601f19603f3d011682016040523d82523d6000602084013e610e26565b606091505b5090935091508183610e4b5760405162461bcd60e51b81526004016102a19190611a82565b506040518481527ffe4e324d6c3c393853951b3712eb58370dd79d26cd12851f51a33161d31f3ee49060200160405180910390a150505050505050505050505050565b6001600160a01b03841663d505accf848484356020860135610eb66060880160408901611a35565b6040516001600160e01b031960e088901b1681526001600160a01b0395861660048201529490931660248501526044840191909152606483015260ff166084820152606084013560a4820152608084013560c482015260e401600060405180830381600087803b158015610f2957600080fd5b505af1158015610f3d573d6000803e3d6000fd5b5050505050505050565b6040516001600160a01b0380851660248301528316604482015260648101829052610fb29085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611306565b50505050565b604051636eb1769f60e11b81523060048201526001600160a01b038381166024830152849160009183169063dd62ed3e9060440160206040518083038186803b15801561100457600080fd5b505afa158015611018573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103c9190611966565b9050828110156110715761105b6001600160a01b0383168560006113db565b6110716001600160a01b038316856000196113db565b5050505050565b606060448310156110c25760405162461bcd60e51b815260206004820152601460248201527313585e585b8819185d18481d1bdbc81cda1bdc9d60621b60448201526064016102a1565b60008367ffffffffffffffff8111156110eb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611115576020820181803683370190505b50905060005b60248110156111975785858281811061114457634e487b7160e01b600052603260045260246000fd5b9050013560f81c60f81b82828151811061116e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508061118f81611b37565b91505061111b565b506000836040516020016111ad91815260200190565b604051602081830303815290604052905060005b602081101561124c578181815181106111ea57634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b03191683611205836024611adc565b8151811061122357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053508061124481611b37565b9150506111c1565b5060445b858110156112cb5786868281811061127857634e487b7160e01b600052603260045260246000fd5b9050013560f81c60f81b8382815181106112a257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350806112c381611b37565b915050611250565b509095945050505050565b6040516001600160a01b038316602482015260448101829052610aab90849063a9059cbb60e01b90606401610f7b565b600061135b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166114ff9092919063ffffffff16565b905080516000148061137c57508080602001905181019061137c919061194a565b610aab5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016102a1565b8015806114645750604051636eb1769f60e11b81523060048201526001600160a01b03838116602483015284169063dd62ed3e9060440160206040518083038186803b15801561142a57600080fd5b505afa15801561143e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114629190611966565b155b6114cf5760405162461bcd60e51b815260206004820152603660248201527f5361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f60448201527520746f206e6f6e2d7a65726f20616c6c6f77616e636560501b60648201526084016102a1565b6040516001600160a01b038316602482015260448101829052610aab90849063095ea7b360e01b90606401610f7b565b606061150e8484600085611516565b949350505050565b6060824710156115775760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016102a1565b600080866001600160a01b031685876040516115939190611a66565b60006040518083038185875af1925050503d80600081146115d0576040519150601f19603f3d011682016040523d82523d6000602084013e6115d5565b606091505b50915091506115e6878383876115f1565b979650505050505050565b6060831561165d578251611656576001600160a01b0385163b6116565760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016102a1565b508161150e565b61150e83838151156116725781518083602001fd5b8060405162461bcd60e51b81526004016102a19190611a82565b80356001600160a01b03811681146116a357600080fd5b919050565b60008083601f8401126116b9578182fd5b50813567ffffffffffffffff8111156116d0578182fd5b6020830191508360208285010111156116e857600080fd5b9250929050565b600060a08284031215611700578081fd5b50919050565b600060208284031215611717578081fd5b6117208261168c565b9392505050565b60008060408385031215611739578081fd5b6117428361168c565b9150602083013561175281611b68565b809150509250929050565b600080600060408486031215611771578081fd5b61177a8461168c565b9250602084013567ffffffffffffffff811115611795578182fd5b6117a1868287016116a8565b9497909650939450505050565b6000806000606084860312156117c2578283fd5b6117cb8461168c565b9250602084013591506117e06040850161168c565b90509250925092565b6000806000806000806101208789031215611802578182fd5b61180b8761168c565b95506020870135945061182188604089016116ef565b935061182f60e0880161168c565b925061010087013567ffffffffffffffff81111561184b578283fd5b61185789828a016116a8565b979a9699509497509295939492505050565b60008060008060008060008060008060006101a08c8e03121561188a578485fd5b6118938c61168c565b9a5060208c013599506118a98d60408e016116ef565b98506118b760e08d0161168c565b975067ffffffffffffffff806101008e013511156118d3578586fd5b6118e48e6101008f01358f016116a8565b90985096506118f66101208e0161168c565b95506101408d0135945061190d6101608e0161168c565b9350806101808e01351115611920578283fd5b506119328d6101808e01358e016116a8565b81935080925050509295989b509295989b9093969950565b60006020828403121561195b578081fd5b815161172081611b68565b600060208284031215611977578081fd5b5051919050565b600080600080600080600080600060e08a8c03121561199b578485fd5b893598506119ab60208b0161168c565b975060408a013567ffffffffffffffff808211156119c7578687fd5b6119d38d838e016116a8565b90995097508791506119e760608d0161168c565b965060808c013595506119fc60a08d0161168c565b945060c08c0135915080821115611a11578384fd5b50611a1e8c828d016116a8565b915080935050809150509295985092959850929598565b600060208284031215611a46578081fd5b813560ff81168114611720578182fd5b8183823760009101908152919050565b60008251611a78818460208701611b0b565b9190910192915050565b6020815260008251806020840152611aa1816040850160208701611b0b565b601f01601f19169190910160400192915050565b6020808252600d908201526c37b7363c9033bab0b93234b0b760991b604082015260600190565b60008219821115611aef57611aef611b52565b500190565b600082821015611b0657611b06611b52565b500390565b60005b83811015611b26578181015183820152602001611b0e565b83811115610fb25750506000910152565b6000600019821415611b4b57611b4b611b52565b5060010190565b634e487b7160e01b600052601160045260246000fd5b8015158114611b7657600080fd5b5056fea26469706673582212200b06f538c22fb07e03dcb8eb58d380632e6fa279191fc602a5df7c7e5dc5387b64736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 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.