More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 85 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21576508 | 3 days ago | IN | 0.13 ETH | 0.00066629 | ||||
Transfer | 21566622 | 5 days ago | IN | 0.2 ETH | 0.00307244 | ||||
Transfer | 21566561 | 5 days ago | IN | 0.1 ETH | 0.0030318 | ||||
Transfer | 21558527 | 6 days ago | IN | 0.014 ETH | 0.00077762 | ||||
Transfer | 21549184 | 7 days ago | IN | 0.15 ETH | 0.00051531 | ||||
Transfer | 21539172 | 8 days ago | IN | 0.04 ETH | 0.00110073 | ||||
Transfer | 21499004 | 14 days ago | IN | 0.0333 ETH | 0.00036536 | ||||
Transfer | 21498832 | 14 days ago | IN | 0.03 ETH | 0.00030375 | ||||
Transfer | 21488392 | 16 days ago | IN | 0.025 ETH | 0.00107791 | ||||
Transfer | 21445932 | 21 days ago | IN | 0.02 ETH | 0.00187262 | ||||
Transfer | 21430341 | 24 days ago | IN | 0.02115566 ETH | 0.00502197 | ||||
Transfer | 21430295 | 24 days ago | IN | 0.4 ETH | 0.00244049 | ||||
Transfer | 21427471 | 24 days ago | IN | 0.41 ETH | 0.00101502 | ||||
Transfer | 21425462 | 24 days ago | IN | 0.5 ETH | 0.00174076 | ||||
Transfer | 21424705 | 24 days ago | IN | 0.6 ETH | 0.00182267 | ||||
Transfer | 21398835 | 28 days ago | IN | 0.00382795 ETH | 0.00083882 | ||||
Transfer | 21396103 | 28 days ago | IN | 0.001 ETH | 0.0015374 | ||||
Transfer | 21393261 | 29 days ago | IN | 0.275 ETH | 0.00112262 | ||||
Transfer | 21392977 | 29 days ago | IN | 0.75 ETH | 0.00119893 | ||||
Transfer | 21392511 | 29 days ago | IN | 0.5 ETH | 0.00130422 | ||||
Transfer | 21381555 | 30 days ago | IN | 0.5 ETH | 0.00249932 | ||||
Transfer | 21381549 | 30 days ago | IN | 0.5 ETH | 0.00269961 | ||||
Transfer | 21381544 | 30 days ago | IN | 0.5 ETH | 0.00275808 | ||||
Transfer | 21381507 | 30 days ago | IN | 0.5 ETH | 0.00276792 | ||||
Transfer | 21381492 | 30 days ago | IN | 0.75 ETH | 0.00278532 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21576508 | 3 days ago | 0.13 ETH | ||||
21566622 | 5 days ago | 0.2 ETH | ||||
21566561 | 5 days ago | 0.1 ETH | ||||
21558527 | 6 days ago | 0.014 ETH | ||||
21549184 | 7 days ago | 0.15 ETH | ||||
21539172 | 8 days ago | 0.04 ETH | ||||
21499004 | 14 days ago | 0.0333 ETH | ||||
21498832 | 14 days ago | 0.03 ETH | ||||
21488392 | 16 days ago | 0.025 ETH | ||||
21445932 | 21 days ago | 0.02 ETH | ||||
21430341 | 24 days ago | 0.02115566 ETH | ||||
21430295 | 24 days ago | 0.4 ETH | ||||
21427471 | 24 days ago | 0.41 ETH | ||||
21425462 | 24 days ago | 0.5 ETH | ||||
21424705 | 24 days ago | 0.6 ETH | ||||
21398835 | 28 days ago | 0.00382795 ETH | ||||
21396103 | 28 days ago | 0.001 ETH | ||||
21393261 | 29 days ago | 0.275 ETH | ||||
21392977 | 29 days ago | 0.75 ETH | ||||
21392511 | 29 days ago | 0.5 ETH | ||||
21381555 | 30 days ago | 0.5 ETH | ||||
21381549 | 30 days ago | 0.5 ETH | ||||
21381544 | 30 days ago | 0.5 ETH | ||||
21381507 | 30 days ago | 0.5 ETH | ||||
21381492 | 30 days ago | 0.75 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
oCULT
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-09 */ // SPDX-License-Identifier: AGPL-3.0-only pragma solidity 0.8.28; /// @notice Swap ETH to CULT and pay zero UI fees. Milady. contract oCULT { address constant POOL = 0xC4ce8E63921b8B6cBdB8fCB6Bd64cC701Fb926f2; address constant CULT = 0x0000000000c5dc95539589fbD24BE07c6C14eCa4; address constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; uint160 constant MAX_SQRT_RATIO_MINUS_ONE = 1461446703485210103287273052203988822378723970341; constructor() payable {} receive() external payable { milady(msg.sender, int256(msg.value)); } function milady(address to, int256 amount) public payable { assembly ("memory-safe") { if iszero(amount) { amount := callvalue() } } (int256 amount0,) = ISwap(POOL).swap(to, false, amount, MAX_SQRT_RATIO_MINUS_ONE, ""); if (amount > 0) { assembly ("memory-safe") { if lt(sub(0, amount0), mod(amount, 10000000000)) { revert(codesize(), codesize()) } } } else { assembly ("memory-safe") { if selfbalance() { pop(call(gas(), caller(), selfbalance(), codesize(), 0x00, codesize(), 0x00)) } } } } fallback() external payable { assembly ("memory-safe") { let amount1Delta := calldataload(0x24) pop(call(gas(), WETH, amount1Delta, codesize(), 0x00, codesize(), 0x00)) mstore(0x00, 0xa9059cbb000000000000000000000000) mstore(0x14, POOL) mstore(0x34, amount1Delta) pop(call(gas(), WETH, 0, 0x10, 0x44, codesize(), 0x00)) } } } /// @dev Minimal Uniswap V3 swap interface. interface ISwap { function swap(address, bool, int256, uint160, bytes calldata) external returns (int256, int256); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"int256","name":"amount","type":"int256"}],"name":"milady","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052610263806100115f395ff3fe608060405260043610610021575f3560e01c8063230ea0c0146100a257610032565b366100325761003033346100b0565b005b6024355f385f388473c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af1506fa9059cbb0000000000000000000000005f5273c4ce8e63921b8b6cbdb8fcb6bd64cc701fb926f260145280603452505f38604460105f73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af1005b6100306100b03660046101c9565b806100b85750345b6040517f128acb0800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201525f602482018190526044820183905273fffd8963efd1fc6a506488495d951d5263988d25606483015260a0608483015260a482018190529073c4ce8e63921b8b6cbdb8fcb6bd64cc701fb926f29063128acb089060c40160408051808303815f875af115801561016c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610190919061020b565b5090505f8213156101b5576402540be4008206815f0310156101b0573838fd5b505050565b47156101b0575f385f5f47335af150505050565b5f5f604083850312156101da575f5ffd5b823573ffffffffffffffffffffffffffffffffffffffff811681146101fd575f5ffd5b946020939093013593505050565b5f5f6040838503121561021c575f5ffd5b50508051602090910151909290915056fea2646970667358221220c57a6f5e0b6e387a4e4124c2b979de24cdef1041353d29d797e93b43601f7f3f64736f6c634300081c0033
Deployed Bytecode
0x608060405260043610610021575f3560e01c8063230ea0c0146100a257610032565b366100325761003033346100b0565b005b6024355f385f388473c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af1506fa9059cbb0000000000000000000000005f5273c4ce8e63921b8b6cbdb8fcb6bd64cc701fb926f260145280603452505f38604460105f73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc25af1005b6100306100b03660046101c9565b806100b85750345b6040517f128acb0800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff831660048201525f602482018190526044820183905273fffd8963efd1fc6a506488495d951d5263988d25606483015260a0608483015260a482018190529073c4ce8e63921b8b6cbdb8fcb6bd64cc701fb926f29063128acb089060c40160408051808303815f875af115801561016c573d5f5f3e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610190919061020b565b5090505f8213156101b5576402540be4008206815f0310156101b0573838fd5b505050565b47156101b0575f385f5f47335af150505050565b5f5f604083850312156101da575f5ffd5b823573ffffffffffffffffffffffffffffffffffffffff811681146101fd575f5ffd5b946020939093013593505050565b5f5f6040838503121561021c575f5ffd5b50508051602090910151909290915056fea2646970667358221220c57a6f5e0b6e387a4e4124c2b979de24cdef1041353d29d797e93b43601f7f3f64736f6c634300081c0033
Deployed Bytecode Sourcemap
130:1588:0:-:0;;;;;;;;;;;;;;;;;;;;;;;543:37;550:10;569:9;543:6;:37::i;:::-;130:1588;;1403:4;1390:18;1488:4;1476:10;1470:4;1458:10;1444:12;1438:4;1431:5;1426:67;1422:72;1521:34;1515:4;1508:48;1583:4;1577;1570:18;1615:12;1609:4;1602:26;;1691:4;1679:10;1673:4;1667;1664:1;1658:4;1651:5;1646:50;1642:55;596:687;;;;;;:::i;:::-;715:6;705:43;;-1:-1:-1;735:11:0;705:43;789:65;;;;;712:42:1;700:55;;789:65:0;;;682:74:1;770:14:0;772:18:1;;;765:50;;;831:18;;;824:34;;;415:49:0;874:18:1;;;867:83;987:3;966:19;;;959:32;1007:19;;;1000:30;;;770:14:0;176:42;;789:16;;1047:19:1;;789:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;769:85;;;878:1;869:6;:10;865:411;;;975:11;967:6;963:24;953:7;950:1;946:15;943:45;940:83;;;1010:10;998;991:30;940:83;654:629;596:687;;:::o;865:411::-;1117:13;1114:136;;;1225:4;1213:10;1225:4;;1180:13;1170:8;1163:5;1158:72;;654:629;596:687;;:::o;14:376:1:-;81:6;89;142:2;130:9;121:7;117:23;113:32;110:52;;;158:1;155;148:12;110:52;197:9;184:23;247:42;240:5;236:54;229:5;226:65;216:93;;305:1;302;295:12;216:93;328:5;380:2;365:18;;;;352:32;;-1:-1:-1;;;14:376:1:o;1077:341::-;1154:6;1162;1215:2;1203:9;1194:7;1190:23;1186:32;1183:52;;;1231:1;1228;1221:12;1183:52;-1:-1:-1;;1276:16:1;;1382:2;1367:18;;;1361:25;1276:16;;1361:25;;-1:-1:-1;1077:341:1:o
Swarm Source
ipfs://c57a6f5e0b6e387a4e4124c2b979de24cdef1041353d29d797e93b43601f7f3f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BASE | 100.00% | $3,269.87 | 0.01 | $32.7 |
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.