More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 388,976 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exit Post Exp To... | 329234001 | 5 mins ago | IN | 0 ETH | 0.00003392 | ||||
Swap Exact Token... | 329233328 | 8 mins ago | IN | 0 ETH | 0.00003532 | ||||
Redeem Due Inter... | 329232674 | 10 mins ago | IN | 0 ETH | 0.00003155 | ||||
Swap Exact Token... | 329229179 | 25 mins ago | IN | 0 ETH | 0.00001766 | ||||
Multicall | 329227621 | 31 mins ago | IN | 0 ETH | 0.00003069 | ||||
Swap Tokens To T... | 329226077 | 38 mins ago | IN | 0 ETH | 0.00001185 | ||||
Redeem Due Inter... | 329225120 | 42 mins ago | IN | 0 ETH | 0.00002764 | ||||
Add Liquidity Si... | 329225087 | 42 mins ago | IN | 0 ETH | 0.00001169 | ||||
Swap Tokens To T... | 329224585 | 44 mins ago | IN | 0 ETH | 0.00000962 | ||||
Swap Tokens To T... | 329224446 | 44 mins ago | IN | 0.02358566 ETH | 0.00000827 | ||||
Add Liquidity Si... | 329224410 | 45 mins ago | IN | 0 ETH | 0.00001274 | ||||
Swap Tokens To T... | 329223174 | 50 mins ago | IN | 0 ETH | 0.00000693 | ||||
Swap Tokens To T... | 329223010 | 50 mins ago | IN | 0.2388685 ETH | 0.0000094 | ||||
Add Liquidity Si... | 329222913 | 51 mins ago | IN | 0 ETH | 0.00001353 | ||||
Exit Post Exp To... | 329222091 | 54 mins ago | IN | 0 ETH | 0.00001603 | ||||
Call And Reflect | 329221620 | 56 mins ago | IN | 0 ETH | 0.00002038 | ||||
Swap Tokens To T... | 329221075 | 58 mins ago | IN | 0 ETH | 0.00000937 | ||||
Swap Tokens To T... | 329220946 | 1 hrs ago | IN | 0 ETH | 0.00001085 | ||||
Swap Tokens To T... | 329219807 | 1 hr ago | IN | 0 ETH | 0.00001113 | ||||
Swap Tokens To T... | 329219347 | 1 hr ago | IN | 0 ETH | 0.00002459 | ||||
Redeem Due Inter... | 329218925 | 1 hr ago | IN | 0 ETH | 0.00000537 | ||||
Swap Tokens To T... | 329216140 | 1 hr ago | IN | 0 ETH | 0.00002637 | ||||
Redeem Due Inter... | 329215783 | 1 hr ago | IN | 0 ETH | 0.0000059 | ||||
Redeem Due Inter... | 329215267 | 1 hr ago | IN | 0 ETH | 0.00000536 | ||||
Multicall | 329215135 | 1 hr ago | IN | 0 ETH | 0.00002983 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
329234001 | 5 mins ago | 0.01575096 ETH | ||||
329234001 | 5 mins ago | 0.01575096 ETH | ||||
329224446 | 44 mins ago | 0.02358566 ETH | ||||
329223010 | 50 mins ago | 0.2388685 ETH | ||||
329221075 | 58 mins ago | 0.07394437 ETH | ||||
329221075 | 58 mins ago | 0.07394437 ETH | ||||
329220946 | 1 hrs ago | 0.03310876 ETH | ||||
329220946 | 1 hrs ago | 0.03310876 ETH | ||||
329215135 | 1 hr ago | 0.00312431 ETH | ||||
329215135 | 1 hr ago | 0.00312431 ETH | ||||
329163918 | 4 hrs ago | 0.00300526 ETH | ||||
329163844 | 4 hrs ago | 0.00121844 ETH | ||||
329163844 | 4 hrs ago | 0.00121844 ETH | ||||
329162568 | 5 hrs ago | 0.00307152 ETH | ||||
329157707 | 5 hrs ago | 0.0031966 ETH | ||||
329157365 | 5 hrs ago | 0.00462148 ETH | ||||
329157316 | 5 hrs ago | 0.00461896 ETH | ||||
329157298 | 5 hrs ago | 0.00462148 ETH | ||||
329157288 | 5 hrs ago | 0.00459874 ETH | ||||
329156710 | 5 hrs ago | 0.006 ETH | ||||
329155584 | 5 hrs ago | 0.00436153 ETH | ||||
329155577 | 5 hrs ago | 0.00445643 ETH | ||||
329155571 | 5 hrs ago | 0.00463802 ETH | ||||
329155567 | 5 hrs ago | 0.00443159 ETH | ||||
329153942 | 5 hrs ago | 0.00121181 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PendleRouterV4
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.17; import "@openzeppelin/contracts/proxy/Proxy.sol"; import "../interfaces/IPActionStorageV4.sol"; import "./RouterStorage.sol"; contract PendleRouterV4 is Proxy, RouterStorage { constructor(address _owner, address actionStorage) { RouterStorage.CoreStorage storage $ = _getCoreStorage(); $.owner = _owner; $.selectorToFacet[IPActionStorageV4.setSelectorToFacets.selector] = actionStorage; } function _implementation() internal view override returns (address) { RouterStorage.CoreStorage storage $ = _getCoreStorage(); address facet = $.selectorToFacet[msg.sig]; require(facet != address(0), "INVALID_SELECTOR"); return facet; } receive() external payable override {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol) pragma solidity ^0.8.0; /** * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to * be specified by overriding the virtual {_implementation} function. * * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a * different contract through the {_delegate} function. * * The success and return data of the delegated call will be returned back to the caller of the proxy. */ abstract contract Proxy { /** * @dev Delegates the current call to `implementation`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _delegate(address implementation) internal virtual { assembly { // Copy msg.data. We take full control of memory in this inline assembly // block because it will not return to Solidity code. We overwrite the // Solidity scratch pad at memory position 0. calldatacopy(0, 0, calldatasize()) // Call the implementation. // out and outsize are 0 because we don't know the size yet. let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) // Copy the returned data. returndatacopy(0, 0, returndatasize()) switch result // delegatecall returns 0 on error. case 0 { revert(0, returndatasize()) } default { return(0, returndatasize()) } } } /** * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function * and {_fallback} should delegate. */ function _implementation() internal view virtual returns (address); /** * @dev Delegates the current call to the address returned by `_implementation()`. * * This function does not return to its internal call site, it will return directly to the external caller. */ function _fallback() internal virtual { _beforeFallback(); _delegate(_implementation()); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other * function in the contract matches the call data. */ fallback() external payable virtual { _fallback(); } /** * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data * is empty. */ receive() external payable virtual { _fallback(); } /** * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback` * call, or as part of the Solidity `fallback` or `receive` functions. * * If overridden should call `super._beforeFallback()`. */ function _beforeFallback() internal virtual {} }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.0; interface IPActionStorageV4 { struct SelectorsToFacet { address facet; bytes4[] selectors; } event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event SelectorToFacetSet(bytes4 indexed selector, address indexed facet); function owner() external view returns (address); function pendingOwner() external view returns (address); function transferOwnership(address newOwner, bool direct, bool renounce) external; function claimOwnership() external; function setSelectorToFacets(SelectorsToFacet[] calldata arr) external; function selectorToFacet(bytes4 selector) external view returns (address); }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity ^0.8.17; abstract contract RouterStorage { struct CoreStorage { address owner; address pendingOwner; mapping(bytes4 => address) selectorToFacet; } // keccak256(abi.encode(uint256(keccak256("pendle.routerv4.Core")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant CORE_STORAGE_LOCATION = 0xf168c5b0cb4aca9a68f931815c18a144c61ad01d6dd7ca15bd6741672a0ab800; function _getCoreStorage() internal pure returns (CoreStorage storage $) { assembly { $.slot := CORE_STORAGE_LOCATION } } }
{ "optimizer": { "enabled": true, "runs": 1000000 }, "viaIR": true, "evmVersion": "shanghai", "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":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"actionStorage","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080346100f957601f61024538819003918201601f19168301916001600160401b038311848410176100fd5780849260409485528339810103126100f957610052602061004b83610111565b9201610111565b7ff168c5b0cb4aca9a68f931815c18a144c61ad01d6dd7ca15bd6741672a0ab80080546001600160a01b039384166001600160a01b03199182161790915563523edfc160e11b5f527ff168c5b0cb4aca9a68f931815c18a144c61ad01d6dd7ca15bd6741672a0ab8026020527f64dcb2031b93f2b828088d68228a52c10b3bf4eb531ee3da663820f1b8fd2a6d805492909316911617905560405161011f90816101268239f35b5f80fd5b634e487b7160e01b5f52604160045260245ffd5b51906001600160a01b03821682036100f95756fe6080604052361560e7577fffffffff000000000000000000000000000000000000000000000000000000005f35165f527ff168c5b0cb4aca9a68f931815c18a144c61ad01d6dd7ca15bd6741672a0ab80260205273ffffffffffffffffffffffffffffffffffffffff60405f2054168015608f575f8091368280378136915af43d5f803e15608b573d5ff35b3d5ffd5b7f08c379a0000000000000000000000000000000000000000000000000000000006080526020608452601060a4527f494e56414c49445f53454c4543544f520000000000000000000000000000000060c45260646080fd5b00fea2646970667358221220fb238a4872e09c3860528f78146507d0193bd6d15bb6de3664daec4da78e4eb964736f6c634300081800330000000000000000000000001fccc097db89a86bfc474a1028f93958295b1fb70000000000000000000000002d36f2a022d1170f33fdfd5670833c447c0c9ff3
Deployed Bytecode
0x6080604052361560e7577fffffffff000000000000000000000000000000000000000000000000000000005f35165f527ff168c5b0cb4aca9a68f931815c18a144c61ad01d6dd7ca15bd6741672a0ab80260205273ffffffffffffffffffffffffffffffffffffffff60405f2054168015608f575f8091368280378136915af43d5f803e15608b573d5ff35b3d5ffd5b7f08c379a0000000000000000000000000000000000000000000000000000000006080526020608452601060a4527f494e56414c49445f53454c4543544f520000000000000000000000000000000060c45260646080fd5b00fea2646970667358221220fb238a4872e09c3860528f78146507d0193bd6d15bb6de3664daec4da78e4eb964736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001fccc097db89a86bfc474a1028f93958295b1fb70000000000000000000000002d36f2a022d1170f33fdfd5670833c447c0c9ff3
-----Decoded View---------------
Arg [0] : _owner (address): 0x1FcCC097db89A86Bfc474A1028F93958295b1Fb7
Arg [1] : actionStorage (address): 0x2D36f2A022D1170f33fDFD5670833C447c0c9Ff3
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000001fccc097db89a86bfc474a1028f93958295b1fb7
Arg [1] : 0000000000000000000000002d36f2a022d1170f33fdfd5670833c447c0c9ff3
Loading...
Loading
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.