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_) {