Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ Master list of UniV3 forks:

### Breaking changes

* Deprecate Abstract Sepolia testnet

### Non-breaking changes

* Fix bug that was causing bad revert reason for expired `AllowanceHolder`
Expand Down
4 changes: 0 additions & 4 deletions api_secrets.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,6 @@
"rpcUrl": "",
"etherscanKey": ""
},
"abstract-testnet": {
"etherscanKey": "",
"rpcUrl": ""
},
"abstract": {
"etherscanKey": "",
"rpcUrl": ""
Expand Down
32 changes: 0 additions & 32 deletions chain_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -843,38 +843,6 @@
"blockscoutApi": "https://api.socialscan.io/monad/v1/explorer/command_api/contract",
"etherscanApi": "https://api.etherscan.io/v2/api?chainid=143"
},
"abstract-testnet": {
"chainId": 11124,
"displayName": "AbstractSepolia",
"wnative": "0x9EDCde0257F2386Ce177C3a7FCdd97787F0D841d",
"isShanghai": true,
"isCancun": true,
"isEraVm": true,
"extraFlags": "",
"extraScriptFlags": "",
"gasMultiplierPercent": 500,
"minGasPriceGwei": 1,
"safe": {
"toehold": "0xaECDbB0a3B1C6D1Fe1755866e330D82eC81fD4FD",
"singleton": "0x1727c2c531cf966f902E5927b98490fDFb3b2b70",
"factory": "0xDAec33641865E4651fB43181C6DB6f7232Ee91c2",
"fallback": "0x2f870a80647BbC554F3a0EBD093f11B4d2a7492A",
"multiCall": "0xf220D3b4DFb23C4ade8C88E526C1353AbAcbC38F",
"apiUrl": "https://transaction-testnet.safe.abs.xyz/api"
},
"governance": {
"upgradeSafe": "0x0a3ba9036e62df32fAeC7753c3372B4375c6E20A",
"deploymentSafe": "0xcF20bD8fbd83C484a34A3f48B30612b42E87e7bb",
"pause": "0x1CeC01DC0fFEE5eB5aF47DbEc1809F2A7c601C30"
},
"deployment": {
"forwardingMultiCall": "0x00000000000000CF9E3c5A26621af382fA17f24f",
"crossChainFactory": "",
"allowanceHolder": "0x0000000000001fF3684f28c67538d4D072C22734",
"deployer": "0x00000000000004533Fe15556B1E086BB1A72cEae"
},
"etherscanApi": "https://api.etherscan.io/v2/api?chainid=11124"
},
"abstract": {
"chainId": 2741,
"displayName": "Abstract",
Expand Down
3 changes: 0 additions & 3 deletions script/SafeConfig.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ library SafeConfig {
function _isTestnet() internal view returns (bool) {
if (
block.chainid == 10143 // monad testnet
|| block.chainid == 11124 // abstract sepolia
|| block.chainid == 11155111 // sepolia
) {
return true;
Expand Down Expand Up @@ -62,7 +61,6 @@ library SafeConfig {
|| block.chainid == 8453 // base
|| block.chainid == 9745 // plasma
|| block.chainid == 10143 // monad testnet
|| block.chainid == 11124 // abstract sepolia
|| block.chainid == 34443 // mode
|| block.chainid == 42161 // arbitrum
|| block.chainid == 43114 // avalanche
Expand All @@ -83,7 +81,6 @@ library SafeConfig {
function isEraVm() internal view returns (bool) {
if (
block.chainid == 2741 // abstract
|| block.chainid == 11124 // abstract sepolia
) {
return true;
}
Expand Down
25 changes: 0 additions & 25 deletions src/chains/AbstractSepolia/BridgeSettler.sol

This file was deleted.

61 changes: 0 additions & 61 deletions src/chains/AbstractSepolia/Common.sol

This file was deleted.

102 changes: 0 additions & 102 deletions src/chains/AbstractSepolia/Intent.sol

This file was deleted.

53 changes: 0 additions & 53 deletions src/chains/AbstractSepolia/MetaTxn.sol

This file was deleted.

56 changes: 0 additions & 56 deletions src/chains/AbstractSepolia/TakerSubmitted.sol

This file was deleted.

1 change: 0 additions & 1 deletion src/core/univ3forks/UniswapV3.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ address constant uniswapV3MonadTestnetFactory = 0x961235a9020B05C44DF1026D956D1F
address constant uniswapV3UnichainFactory = 0x1F98400000000000000000000000000000000003; // https://github.com/Uniswap/contracts/blob/main/deployments/130.md#fri-nov-08-2024
address constant uniswapV3PlasmaFactory = 0xcb2436774C3e191c85056d248EF4260ce5f27A9D;
address constant uniswapV3MonadFactory = 0x204FAca1764B154221e35c0d20aBb3c525710498;
address constant uniswapV3AbstractSepoliaFactory = 0x2E17FF9b877661bDFEF8879a4B31665157a960F0;
address constant uniswapV3AbstractFactory = 0xA1160e73B63F322ae88cC2d8E700833e71D0b2a1;

bytes32 constant uniswapV3InitHash = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54;
Expand Down