More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 11,677 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Swap Tokens To T... | 310322313 | 55 days ago | IN | 0.095 ETH | 0.00000678 | ||||
Redeem Due Inter... | 310322202 | 55 days ago | IN | 0 ETH | 0.00000312 | ||||
Swap Exact Yt Fo... | 310321652 | 55 days ago | IN | 0 ETH | 0.00000449 | ||||
Swap Tokens To T... | 310318154 | 55 days ago | IN | 0 ETH | 0.00000451 | ||||
Swap Tokens To T... | 310317858 | 55 days ago | IN | 0 ETH | 0.00000421 | ||||
Swap Tokens To T... | 310317342 | 55 days ago | IN | 0 ETH | 0.00000479 | ||||
Call And Reflect | 310307373 | 55 days ago | IN | 0 ETH | 0.00002241 | ||||
Redeem Due Inter... | 310305682 | 55 days ago | IN | 0 ETH | 0.00000612 | ||||
Swap Tokens To T... | 310304571 | 55 days ago | IN | 0 ETH | 0.00000418 | ||||
Swap Exact Yt Fo... | 310303623 | 55 days ago | IN | 0 ETH | 0.00001156 | ||||
Swap Tokens To T... | 310303290 | 55 days ago | IN | 0 ETH | 0.00001176 | ||||
Multicall | 310302039 | 55 days ago | IN | 0 ETH | 0.00002018 | ||||
Redeem Sy To Tok... | 310301863 | 55 days ago | IN | 0 ETH | 0.00000795 | ||||
Redeem Due Inter... | 310301324 | 55 days ago | IN | 0 ETH | 0.00000266 | ||||
Swap Tokens To T... | 310298856 | 55 days ago | IN | 0 ETH | 0.00000701 | ||||
Swap Tokens To T... | 310298223 | 55 days ago | IN | 0 ETH | 0.00002537 | ||||
Multicall | 310298051 | 55 days ago | IN | 0 ETH | 0.00000849 | ||||
Multicall | 310295859 | 55 days ago | IN | 0 ETH | 0.00001353 | ||||
Add Liquidity Si... | 310295339 | 55 days ago | IN | 0 ETH | 0.00000783 | ||||
Swap Exact Token... | 310293352 | 55 days ago | IN | 0 ETH | 0.00003285 | ||||
Swap Tokens To T... | 310293058 | 55 days ago | IN | 0 ETH | 0.00000813 | ||||
Swap Tokens To T... | 310290613 | 55 days ago | IN | 0 ETH | 0.00001003 | ||||
Redeem Due Inter... | 310290236 | 55 days ago | IN | 0 ETH | 0.00000273 | ||||
Redeem Due Inter... | 310289840 | 55 days ago | IN | 0 ETH | 0.00000256 | ||||
Swap Exact Yt Fo... | 310289420 | 55 days ago | IN | 0 ETH | 0.0000041 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
329296115 | 9 mins ago | 0.00137297 ETH | ||||
329296115 | 9 mins ago | 0.00137297 ETH | ||||
329290853 | 31 mins ago | 0.00129629 ETH | ||||
329290853 | 31 mins ago | 0.00129629 ETH | ||||
329290521 | 33 mins ago | 0.91934414 ETH | ||||
329290521 | 33 mins ago | 0.91934414 ETH | ||||
329282625 | 1 hr ago | 0.00121892 ETH | ||||
329282625 | 1 hr ago | 0.00121892 ETH | ||||
329281366 | 1 hr ago | 0.00130338 ETH | ||||
329281366 | 1 hr ago | 0.00130338 ETH | ||||
329279421 | 1 hr ago | 0.5 ETH | ||||
329270526 | 1 hr ago | 0.00123607 ETH | ||||
329270526 | 1 hr ago | 0.00123607 ETH | ||||
329267525 | 2 hrs ago | 0.00129849 ETH | ||||
329267525 | 2 hrs ago | 0.00129849 ETH | ||||
329258303 | 2 hrs ago | 0.0011762 ETH | ||||
329258303 | 2 hrs ago | 0.0011762 ETH | ||||
329257183 | 2 hrs ago | 0.07 ETH | ||||
329255935 | 2 hrs ago | 0.00125905 ETH | ||||
329255935 | 2 hrs ago | 0.00125905 ETH | ||||
329246703 | 3 hrs ago | 0.14945409 ETH | ||||
329246703 | 3 hrs ago | 0.14945409 ETH | ||||
329245310 | 3 hrs ago | 0.544 ETH | ||||
329243712 | 3 hrs ago | 0.01551718 ETH | ||||
329243712 | 3 hrs ago | 0.01551718 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.