From 600d12d4b2eb08c09d2d1571ea89d0fab35e3fac Mon Sep 17 00:00:00 2001 From: Romashka Date: Mon, 10 Feb 2025 15:20:43 +0200 Subject: [PATCH] link- Update TransparentUpgradeableProxy.sol --- .../upgradeable/proxy/TransparentUpgradeableProxy.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/layerzero-v2/evm/messagelib/contracts/upgradeable/proxy/TransparentUpgradeableProxy.sol b/packages/layerzero-v2/evm/messagelib/contracts/upgradeable/proxy/TransparentUpgradeableProxy.sol index c80b7c04..f5e4e61a 100644 --- a/packages/layerzero-v2/evm/messagelib/contracts/upgradeable/proxy/TransparentUpgradeableProxy.sol +++ b/packages/layerzero-v2/evm/messagelib/contracts/upgradeable/proxy/TransparentUpgradeableProxy.sol @@ -61,7 +61,7 @@ contract TransparentUpgradeableProxy is ERC1967Proxy { * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the - * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. + * https://ethereum.org [`eth_getStorageAt`] RPC call. * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103` */ function admin() external ifAdmin returns (address admin_) { @@ -74,7 +74,7 @@ contract TransparentUpgradeableProxy is ERC1967Proxy { * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. * * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the - * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. + * https://ethereum.org [`eth_getStorageAt`] RPC call. * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc` */ function implementation() external ifAdmin returns (address implementation_) {