diff --git a/scripts/L0Config.json b/scripts/L0Config.json index 6dcf47cf..61e738da 100644 --- a/scripts/L0Config.json +++ b/scripts/L0Config.json @@ -13,7 +13,7 @@ "sendLib302": "0xbB2Ea70C9E858123480642Cf96acbcCE1372dCe1" }, { - "RPC": "https://metis-mainnet.public.blastapi.io", + "RPC": "https://andromeda.metis.io/?owner=1088", "chainid": 1088, "delegate": "0xF4A4F32732F9B2fB84Ee28c58616946F3bF80F7d", "dvnHorizen": "0x32d4F92437454829b3Fe7BEBfeCE5D0523DEb475", diff --git a/scripts/ops/fix/FixLegacyDVNs/1_SetBlockSendLibLegacy.s.sol b/scripts/ops/fix/FixLegacyDVNs/1_SetBlockSendLibLegacy.s.sol new file mode 100644 index 00000000..c0d29c06 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/1_SetBlockSendLibLegacy.s.sol @@ -0,0 +1,81 @@ +// SPDX-License-Identifier: ISC +pragma solidity ^0.8.19; + +import "./FixLegacyDVNsInherited.s.sol"; +import {IOAppCore} from "@fraxfinance/layerzero-v2-upgradeable/oapp/contracts/oapp/interfaces/IOAppCore.sol"; + +interface IEndpointV2BlockLib { + function blockedLibrary() external view returns (address); + function getSendLibrary(address _sender, uint32 _dstEid) external view returns (address lib); +} + +/// @title Step 1: Block send lib for all legacy OFTs +/// @notice Sets the send library to the blocked library for all legacy OFTs on each source chain, +/// preventing any OFT message flow. This must be executed FIRST before DVN config changes. +/// @dev Run per-chain: modify the chainId filter in run() to target a specific source chain. +/// Generates one Safe TX batch JSON per source chain. +contract SetBlockSendLibLegacy is FixLegacyDVNsInherited { + using stdJson for string; + using Strings for uint256; + + function filename() public view override returns (string memory) { + string memory root = vm.projectRoot(); + root = string.concat(root, "/scripts/ops/fix/FixLegacyDVNs/txs/"); + string memory name = string.concat((block.timestamp).toString(), "-1_SetBlockSendLibLegacy-"); + name = string.concat(name, currentOftName, "-"); + name = string.concat(name, simulateConfig.chainid.toString()); + name = string.concat(name, ".json"); + return string.concat(root, name); + } + + function run() public override { + for (uint256 o = 0; o < legacyOftAddresses.length; o++) { + currentOftName = legacyOftNames[o]; + for (uint256 i = 0; i < legacyConfigs.length; i++) { + for (uint256 j = 0; j < legacyChainIds.length; j++) { + if (legacyConfigs[i].chainid == legacyChainIds[j]) { + blockSendLibsForOft(legacyConfigs[i], legacyOftAddresses[o]); + } + } + } + } + } + + function blockSendLibsForOft(L0Config memory _config, address _oft) public simulateAndWriteTxs(_config) { + address blockedLibrary = IEndpointV2BlockLib(_config.endpoint).blockedLibrary(); + + for (uint256 d = 0; d < legacyChainIds.length; d++) { + // Skip self + if (legacyChainIds[d] == _config.chainid) continue; + + L0Config memory dstConfig = findLegacyConfig(legacyChainIds[d]); + + // Skip if peer is not set + if (!hasPeer(_oft, uint32(dstConfig.eid))) continue; + + // Check if already blocked + address existingSendLib = IEndpointV2BlockLib(_config.endpoint).getSendLibrary( + _oft, + uint32(dstConfig.eid) + ); + if (existingSendLib == blockedLibrary) continue; + + // Set send lib to blocked library + bytes memory data = abi.encodeCall( + IMessageLibManager.setSendLibrary, + (_oft, uint32(dstConfig.eid), blockedLibrary) + ); + (bool success,) = _config.endpoint.call(data); + require(success, "Failed to set blocked send library"); + + serializedTxs.push( + SerializedTx({ + name: "SetBlockSendLib", + to: _config.endpoint, + value: 0, + data: data + }) + ); + } + } +} diff --git a/scripts/ops/fix/FixLegacyDVNs/2_FixDVNsAndRestoreSendLibLegacy.s.sol b/scripts/ops/fix/FixLegacyDVNs/2_FixDVNsAndRestoreSendLibLegacy.s.sol new file mode 100644 index 00000000..171a3fa3 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/2_FixDVNsAndRestoreSendLibLegacy.s.sol @@ -0,0 +1,183 @@ +// SPDX-License-Identifier: ISC +pragma solidity ^0.8.19; + +import "./FixLegacyDVNsInherited.s.sol"; +import {IOAppCore} from "@fraxfinance/layerzero-v2-upgradeable/oapp/contracts/oapp/interfaces/IOAppCore.sol"; +import {SetConfigParam, IMessageLibManager} from "@fraxfinance/layerzero-v2-upgradeable/protocol/contracts/interfaces/IMessageLibManager.sol"; +import {Constant} from "@fraxfinance/layerzero-v2-upgradeable/messagelib/test/util/Constant.sol"; +import {UlnConfig} from "@fraxfinance/layerzero-v2-upgradeable/messagelib/contracts/uln/UlnBase.sol"; +import {Arrays} from "@openzeppelin-5/contracts/utils/Arrays.sol"; + +error LZ_SameValue(); + +/// @title Step 2+3: Set DVN config and restore send lib for legacy OFTs +/// @notice For Ethereum, Blast, Base: sets 3/3 DVN config (Frax + Horizen + L0) on both +/// send and receive ULN libraries, then restores the send library to the proper sendLib302. +/// For Metis: keeps existing 2/2 DVN config (no Frax DVN available), only restores send lib. +/// @dev This script should be executed AFTER Step 1 (block send lib) has been confirmed on-chain. +/// Steps 2 and 3 are batched together so they execute atomically in a single Safe TX batch. +contract FixDVNsAndRestoreSendLibLegacy is FixLegacyDVNsInherited { + using stdJson for string; + using Strings for uint256; + + struct LegacyDvnStack { + address frax; + address horizen; + address lz; + } + + function filename() public view override returns (string memory) { + string memory root = vm.projectRoot(); + root = string.concat(root, "/scripts/ops/fix/FixLegacyDVNs/txs/"); + string memory name = string.concat((block.timestamp).toString(), "-2_FixDVNsAndRestoreSendLibLegacy-"); + name = string.concat(name, currentOftName, "-"); + name = string.concat(name, simulateConfig.chainid.toString()); + name = string.concat(name, ".json"); + return string.concat(root, name); + } + + function run() public override { + for (uint256 o = 0; o < legacyOftAddresses.length; o++) { + currentOftName = legacyOftNames[o]; + for (uint256 i = 0; i < legacyConfigs.length; i++) { + for (uint256 j = 0; j < legacyChainIds.length; j++) { + if (legacyConfigs[i].chainid == legacyChainIds[j]) { + fixDVNsAndRestoreSendLibForOft(legacyConfigs[i], legacyOftAddresses[o]); + } + } + } + } + } + + function fixDVNsAndRestoreSendLibForOft(L0Config memory _config, address _oft) public simulateAndWriteTxs(_config) { + for (uint256 d = 0; d < legacyChainIds.length; d++) { + // Skip self + if (legacyChainIds[d] == _config.chainid) continue; + + L0Config memory dstConfig = findLegacyConfig(legacyChainIds[d]); + + // Only set DVN config if BOTH source and destination have Frax DVN + bool bothHaveFraxDvn = hasFraxDvn(_config.chainid) && hasFraxDvn(legacyChainIds[d]); + + // Skip if peer is not set + if (!hasPeer(_oft, uint32(dstConfig.eid))) continue; + + // --- Step 2: Set DVN config (only for pathways where both sides have Frax DVN) --- + if (bothHaveFraxDvn) { + _setDVNConfig(_oft, _config, dstConfig); + } + + // --- Step 3: Restore send library --- + _restoreSendLib(_oft, _config, dstConfig); + } + } + + /// @notice Set 3/3 DVN config (Frax + Horizen + L0) on both sendLib and receiveLib + function _setDVNConfig( + address _oft, + L0Config memory _srcConfig, + L0Config memory _dstConfig + ) internal { + // Build the desired DVN array from the dvn config files + address[] memory desiredDVNs = _craftLegacyDvnStack(_srcConfig.chainid, _dstConfig.chainid); + + // Set config on send library + _setUlnConfig(_oft, _srcConfig, _dstConfig, _srcConfig.sendLib302, desiredDVNs); + + // Set config on receive library + _setUlnConfig(_oft, _srcConfig, _dstConfig, _srcConfig.receiveLib302, desiredDVNs); + } + + function _setUlnConfig( + address _oft, + L0Config memory _srcConfig, + L0Config memory _dstConfig, + address _lib, + address[] memory _desiredDVNs + ) internal { + UlnConfig memory desiredUlnConfig; + desiredUlnConfig.requiredDVNCount = uint8(_desiredDVNs.length); + desiredUlnConfig.requiredDVNs = _desiredDVNs; + + SetConfigParam[] memory params = new SetConfigParam[](1); + params[0] = SetConfigParam({ + eid: uint32(_dstConfig.eid), + configType: Constant.CONFIG_TYPE_ULN, + config: abi.encode(desiredUlnConfig) + }); + + bytes memory data = abi.encodeCall( + IMessageLibManager.setConfig, + (_oft, _lib, params) + ); + (bool success,) = _srcConfig.endpoint.call(data); + require(success, "Failed to setConfig DVNs"); + + serializedTxs.push( + SerializedTx({ + name: "setConfig", + to: _srcConfig.endpoint, + value: 0, + data: data + }) + ); + } + + /// @notice Restore send library from blocked to sendLib302 + function _restoreSendLib( + address _oft, + L0Config memory _srcConfig, + L0Config memory _dstConfig + ) internal { + bytes memory data = abi.encodeCall( + IMessageLibManager.setSendLibrary, + (_oft, uint32(_dstConfig.eid), _srcConfig.sendLib302) + ); + (bool success, bytes memory returnData) = _srcConfig.endpoint.call(data); + + if (!success) { + if (returnData.length >= 4) { + bytes4 errorSelector; + assembly { + errorSelector := mload(add(returnData, 32)) + } + + if (errorSelector != LZ_SameValue.selector) { + revert("Failed to restore send library"); + } + } + } + + serializedTxs.push( + SerializedTx({ + name: "SetSendLib", + to: _srcConfig.endpoint, + value: 0, + data: data + }) + ); + } + + /// @notice Build the sorted 3-DVN array (Frax + Horizen + L0) from dvn config files. + /// Reads config/dvn/{srcChainId}.json -> key {dstChainId}. + function _craftLegacyDvnStack( + uint256 _srcChainId, + uint256 _dstChainId + ) internal returns (address[] memory desiredDVNs) { + // Load DVN stack from config file (uses the existing SetDVNs.getDvnStack pattern) + DvnStack memory srcStack = getDvnStack(_srcChainId, _dstChainId); + + // For legacy upgrade we expect exactly: frax + horizen + lz + require(srcStack.frax != address(0), "Frax DVN missing in src config"); + require(srcStack.horizen != address(0), "Horizen DVN missing in src config"); + require(srcStack.lz != address(0), "L0 DVN missing in src config"); + + desiredDVNs = new address[](3); + desiredDVNs[0] = srcStack.frax; + desiredDVNs[1] = srcStack.horizen; + desiredDVNs[2] = srcStack.lz; + + // Sort ascending (required by LayerZero ULN) + desiredDVNs = Arrays.sort(desiredDVNs); + } +} diff --git a/scripts/ops/fix/FixLegacyDVNs/FixLegacyDVNsInherited.s.sol b/scripts/ops/fix/FixLegacyDVNs/FixLegacyDVNsInherited.s.sol new file mode 100644 index 00000000..9fc8816b --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/FixLegacyDVNsInherited.s.sol @@ -0,0 +1,82 @@ +// SPDX-License-Identifier: ISC +pragma solidity ^0.8.19; + +import "scripts/DeployFraxOFTProtocol/DeployFraxOFTProtocol.s.sol"; + +/// @title FixLegacyDVNsInherited +/// @notice Base contract for legacy OFT DVN upgrade scripts. +/// Legacy OFTs live on 4 chains: Ethereum (1), Metis (1088), Blast (81457), Base (8453). +/// All 6 legacy OFTs share the same address across all 4 chains. +/// Metis does NOT have a Frax DVN, so it stays at 2/2 (Horizen + L0). +contract FixLegacyDVNsInherited is DeployFraxOFTProtocol { + using OptionsBuilder for bytes; + using stdJson for string; + using Strings for uint256; + + /// @notice The 4 legacy chain IDs + uint256[] public legacyChainIds; + + /// @notice The 6 legacy OFT addresses (same on all chains) + address[] public legacyOftAddresses; + + /// @notice The 6 legacy OFT names (parallel to legacyOftAddresses) + string[] public legacyOftNames; + + /// @notice Currently processing OFT name (set before simulateAndWriteTxs calls) + string public currentOftName; + + /// @notice Legacy chain IDs that get the Frax DVN upgrade (excludes Metis) + uint256[] public fraxDvnChainIds; + + constructor() { + // Legacy chains + legacyChainIds.push(1); // Ethereum + legacyChainIds.push(1088); // Metis + legacyChainIds.push(81457); // Blast + legacyChainIds.push(8453); // Base + + // 6 legacy OFTs (same address on all 4 chains) + legacyOftAddresses.push(0x909DBdE1eBE906Af95660033e478D59EFe831fED); // LFRAX + legacyOftAddresses.push(0xe4796cCB6bB5DE2290C417Ac337F2b66CA2E770E); // sFRAX + legacyOftAddresses.push(0xF010a7c8877043681D59AD125EbF575633505942); // frxETH + legacyOftAddresses.push(0x1f55a02A049033E3419a8E2975cF3F572F4e6E9A); // sfrxETH + legacyOftAddresses.push(0x23432452B720C80553458496D4D9d7C5003280d0); // FRAX + legacyOftAddresses.push(0x6Eca253b102D41B6B69AC815B9CC6bD47eF1979d); // FPI + + // Parallel names array + legacyOftNames.push("LFRAX"); + legacyOftNames.push("sFRAX"); + legacyOftNames.push("frxETH"); + legacyOftNames.push("sfrxETH"); + legacyOftNames.push("FRAX"); + legacyOftNames.push("FPI"); + + // Chains that will get 3/3 DVN (Frax DVN added) — Metis excluded + fraxDvnChainIds.push(1); // Ethereum + fraxDvnChainIds.push(81457); // Blast + fraxDvnChainIds.push(8453); // Base + } + + /// @notice Find legacy L0Config by chain ID from legacyConfigs array + function findLegacyConfig(uint256 _chainId) internal view returns (L0Config memory) { + for (uint256 i = 0; i < legacyConfigs.length; i++) { + if (legacyConfigs[i].chainid == _chainId) { + return legacyConfigs[i]; + } + } + revert(string.concat("Legacy config not found for chainId: ", _chainId.toString())); + } + + /// @notice Check if a chain has Frax DVN support + function hasFraxDvn(uint256 _chainId) internal view returns (bool) { + for (uint256 i = 0; i < fraxDvnChainIds.length; i++) { + if (fraxDvnChainIds[i] == _chainId) return true; + } + return false; + } + + function hasPeer(address _oft, uint32 _eid) internal view returns (bool) { + bytes32 peer = IOAppCore(_oft).peers(_eid); + return peer != bytes32(0); + } +} diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661025-1_SetBlockSendLibLegacy-LFRAX-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661025-1_SetBlockSendLibLegacy-LFRAX-1088.json new file mode 100644 index 00000000..d0e3bfb4 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661025-1_SetBlockSendLibLegacy-LFRAX-1088.json @@ -0,0 +1,29 @@ +{ + "chainId": 1088, + "createdAt": 1776661025000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [ + { + "data": "0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661025-1_SetBlockSendLibLegacy-sFRAX-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661025-1_SetBlockSendLibLegacy-sFRAX-1088.json new file mode 100644 index 00000000..cc7527de --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661025-1_SetBlockSendLibLegacy-sFRAX-1088.json @@ -0,0 +1,29 @@ +{ + "chainId": 1088, + "createdAt": 1776661025000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [ + { + "data": "0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661031-1_SetBlockSendLibLegacy-LFRAX-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661031-1_SetBlockSendLibLegacy-LFRAX-1.json new file mode 100644 index 00000000..c35fcc3a --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661031-1_SetBlockSendLibLegacy-LFRAX-1.json @@ -0,0 +1,29 @@ +{ + "chainId": 1, + "createdAt": 1776661031000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [ + { + "data": "0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-LFRAX-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-LFRAX-81457.json new file mode 100644 index 00000000..e0e364f1 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-LFRAX-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776661043000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-frxETH-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-frxETH-1.json new file mode 100644 index 00000000..f767294c --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-frxETH-1.json @@ -0,0 +1,29 @@ +{ + "chainId": 1, + "createdAt": 1776661043000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [ + { + "data": "0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-sFRAX-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-sFRAX-1.json new file mode 100644 index 00000000..5fcdab86 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-sFRAX-1.json @@ -0,0 +1,29 @@ +{ + "chainId": 1, + "createdAt": 1776661043000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [ + { + "data": "0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-sfrxETH-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-sfrxETH-1.json new file mode 100644 index 00000000..f2d6cc33 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661043-1_SetBlockSendLibLegacy-sfrxETH-1.json @@ -0,0 +1,29 @@ +{ + "chainId": 1, + "createdAt": 1776661043000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [ + { + "data": "0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661045-1_SetBlockSendLibLegacy-LFRAX-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661045-1_SetBlockSendLibLegacy-LFRAX-8453.json new file mode 100644 index 00000000..b83215f8 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661045-1_SetBlockSendLibLegacy-LFRAX-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776661045000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661047-1_SetBlockSendLibLegacy-sFRAX-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661047-1_SetBlockSendLibLegacy-sFRAX-81457.json new file mode 100644 index 00000000..e100119a --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661047-1_SetBlockSendLibLegacy-sFRAX-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776661047000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661049-1_SetBlockSendLibLegacy-frxETH-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661049-1_SetBlockSendLibLegacy-frxETH-1088.json new file mode 100644 index 00000000..9ad1ed8c --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661049-1_SetBlockSendLibLegacy-frxETH-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776661049000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661049-1_SetBlockSendLibLegacy-sFRAX-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661049-1_SetBlockSendLibLegacy-sFRAX-8453.json new file mode 100644 index 00000000..fd635247 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661049-1_SetBlockSendLibLegacy-sFRAX-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776661049000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661051-1_SetBlockSendLibLegacy-frxETH-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661051-1_SetBlockSendLibLegacy-frxETH-81457.json new file mode 100644 index 00000000..f4dc5f16 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661051-1_SetBlockSendLibLegacy-frxETH-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776661051000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661051-1_SetBlockSendLibLegacy-frxETH-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661051-1_SetBlockSendLibLegacy-frxETH-8453.json new file mode 100644 index 00000000..b6f52ebe --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661051-1_SetBlockSendLibLegacy-frxETH-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776661051000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661053-1_SetBlockSendLibLegacy-FPI-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661053-1_SetBlockSendLibLegacy-FPI-1088.json new file mode 100644 index 00000000..c44553df --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661053-1_SetBlockSendLibLegacy-FPI-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776661053000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661053-1_SetBlockSendLibLegacy-FRAX-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661053-1_SetBlockSendLibLegacy-FRAX-1088.json new file mode 100644 index 00000000..60af4d1e --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661053-1_SetBlockSendLibLegacy-FRAX-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776661053000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661053-1_SetBlockSendLibLegacy-sfrxETH-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661053-1_SetBlockSendLibLegacy-sfrxETH-1088.json new file mode 100644 index 00000000..50f7d557 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661053-1_SetBlockSendLibLegacy-sfrxETH-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776661053000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-FPI-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-FPI-1.json new file mode 100644 index 00000000..7a9401e8 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-FPI-1.json @@ -0,0 +1,29 @@ +{ + "chainId": 1, + "createdAt": 1776661055000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [ + { + "data": "0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-FRAX-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-FRAX-1.json new file mode 100644 index 00000000..1468cd7a --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-FRAX-1.json @@ -0,0 +1,29 @@ +{ + "chainId": 1, + "createdAt": 1776661055000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [ + { + "data": "0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + }, + { + "data": "0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862", + "operation": "0", + "to": "0x1a44076050125825900e736c501f859c50fE728c", + "value": "0" + } + ], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-sfrxETH-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-sfrxETH-81457.json new file mode 100644 index 00000000..899d9918 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-sfrxETH-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776661055000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-sfrxETH-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-sfrxETH-8453.json new file mode 100644 index 00000000..902c5522 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661055-1_SetBlockSendLibLegacy-sfrxETH-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776661055000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661057-1_SetBlockSendLibLegacy-FRAX-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661057-1_SetBlockSendLibLegacy-FRAX-81457.json new file mode 100644 index 00000000..0c1bf16f --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661057-1_SetBlockSendLibLegacy-FRAX-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776661057000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661059-1_SetBlockSendLibLegacy-FRAX-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661059-1_SetBlockSendLibLegacy-FRAX-8453.json new file mode 100644 index 00000000..12dfd585 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661059-1_SetBlockSendLibLegacy-FRAX-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776661059000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661061-1_SetBlockSendLibLegacy-FPI-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661061-1_SetBlockSendLibLegacy-FPI-81457.json new file mode 100644 index 00000000..d85b6800 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661061-1_SetBlockSendLibLegacy-FPI-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776661061000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075e80000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776661061-1_SetBlockSendLibLegacy-FPI-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776661061-1_SetBlockSendLibLegacy-FPI-8453.json new file mode 100644 index 00000000..f4ca4eb9 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776661061-1_SetBlockSendLibLegacy-FPI-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776661061000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075950000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075c70000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000076230000000000000000000000001ccbf0db9c192d969de57e25b3ff09a25bb1d862","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662101-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662101-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-1088.json new file mode 100644 index 00000000..c507a1e5 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662101-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776662101000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000000000000000000000000000000000000000759500000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000000000000000000000000000000000000000762300000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075e800000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662111-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662111-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-1.json new file mode 100644 index 00000000..9cce7d27 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662111-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-1.json @@ -0,0 +1,10 @@ +{ + "chainId": 1, + "createdAt": 1776662111000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed0000000000000000000000000000000000000000000000000000000000007623000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662123-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662123-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-81457.json new file mode 100644 index 00000000..17a88c88 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662123-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776662123000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed0000000000000000000000000000000000000000000000000000000000007595000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662123-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662123-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-1.json new file mode 100644 index 00000000..9e9214a7 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662123-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-1.json @@ -0,0 +1,10 @@ +{ + "chainId": 1, + "createdAt": 1776662123000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e0000000000000000000000000000000000000000000000000000000000007623000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662127-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662127-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-8453.json new file mode 100644 index 00000000..49235949 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662127-2_FixDVNsAndRestoreSendLibLegacy-LFRAX-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776662127000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed0000000000000000000000000000000000000000000000000000000000007595000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000909dbde1ebe906af95660033e478d59efe831fed0000000000000000000000000000000000000000000000000000000000007623000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-FRAX-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-FRAX-1088.json new file mode 100644 index 00000000..68c08c21 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-FRAX-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776662131000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000000000000000000000000000000000000000759500000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000000000000000000000000000000000000000762300000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075e800000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-frxETH-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-frxETH-1088.json new file mode 100644 index 00000000..dd81fa9e --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-frxETH-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776662131000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000000000000000000000000000000000000000759500000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000000000000000000000000000000000000000762300000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075e800000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-1088.json new file mode 100644 index 00000000..fadd8d8d --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776662131000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000000000000000000000000000000000000000759500000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000000000000000000000000000000000000000762300000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075e800000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-81457.json new file mode 100644 index 00000000..6541532d --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776662131000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e0000000000000000000000000000000000000000000000000000000000007595000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-1088.json new file mode 100644 index 00000000..8e85f61c --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662131-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776662131000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000000000000000000000000000000000000000759500000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000000000000000000000000000000000000000762300000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075e800000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662135-2_FixDVNsAndRestoreSendLibLegacy-frxETH-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662135-2_FixDVNsAndRestoreSendLibLegacy-frxETH-1.json new file mode 100644 index 00000000..dcf40e0e --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662135-2_FixDVNsAndRestoreSendLibLegacy-frxETH-1.json @@ -0,0 +1,10 @@ +{ + "chainId": 1, + "createdAt": 1776662135000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf5756335059420000000000000000000000000000000000000000000000000000000000007623000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662135-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662135-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-8453.json new file mode 100644 index 00000000..53e993d3 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662135-2_FixDVNsAndRestoreSendLibLegacy-sFRAX-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776662135000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e0000000000000000000000000000000000000000000000000000000000007595000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000e4796ccb6bb5de2290c417ac337f2b66ca2e770e0000000000000000000000000000000000000000000000000000000000007623000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662135-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662135-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-1.json new file mode 100644 index 00000000..8ab185d4 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662135-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-1.json @@ -0,0 +1,10 @@ +{ + "chainId": 1, + "createdAt": 1776662135000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a0000000000000000000000000000000000000000000000000000000000007623000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662139-2_FixDVNsAndRestoreSendLibLegacy-frxETH-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662139-2_FixDVNsAndRestoreSendLibLegacy-frxETH-81457.json new file mode 100644 index 00000000..158a8c0e --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662139-2_FixDVNsAndRestoreSendLibLegacy-frxETH-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776662139000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf5756335059420000000000000000000000000000000000000000000000000000000000007595000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662143-2_FixDVNsAndRestoreSendLibLegacy-frxETH-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662143-2_FixDVNsAndRestoreSendLibLegacy-frxETH-8453.json new file mode 100644 index 00000000..c337fc2d --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662143-2_FixDVNsAndRestoreSendLibLegacy-frxETH-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776662143000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf5756335059420000000000000000000000000000000000000000000000000000000000007595000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf57563350594200000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f90000000000000000000000000f010a7c8877043681d59ad125ebf575633505942000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff30000000000000000000000000f010a7c8877043681d59ad125ebf5756335059420000000000000000000000000000000000000000000000000000000000007623000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662147-2_FixDVNsAndRestoreSendLibLegacy-FPI-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662147-2_FixDVNsAndRestoreSendLibLegacy-FPI-1.json new file mode 100644 index 00000000..67958b02 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662147-2_FixDVNsAndRestoreSendLibLegacy-FPI-1.json @@ -0,0 +1,10 @@ +{ + "chainId": 1, + "createdAt": 1776662147000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d0000000000000000000000000000000000000000000000000000000000007623000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662147-2_FixDVNsAndRestoreSendLibLegacy-FRAX-1.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662147-2_FixDVNsAndRestoreSendLibLegacy-FRAX-1.json new file mode 100644 index 00000000..341cc8f3 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662147-2_FixDVNsAndRestoreSendLibLegacy-FRAX-1.json @@ -0,0 +1,10 @@ +{ + "chainId": 1, + "createdAt": 1776662147000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d00000000000000000000000000000000000000000000000000000000000007623000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000c02ab410f0734efa3f14628780e6e695156024c200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000380275805876ff19055ea900cdb2b46a94ecf20d00000000000000000000000038654142f5e672ae86a1b21523aafc765e6a1e08000000000000000000000000589dedbd617e0cbcb916a9223f4d1300c294236b0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000bb2ea70c9e858123480642cf96acbcce1372dce1","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662147-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662147-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-81457.json new file mode 100644 index 00000000..5dfd7f7d --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662147-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776662147000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a0000000000000000000000000000000000000000000000000000000000007595000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662149-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662149-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-8453.json new file mode 100644 index 00000000..67b78703 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662149-2_FixDVNsAndRestoreSendLibLegacy-sfrxETH-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776662149000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a0000000000000000000000000000000000000000000000000000000000007595000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000001f55a02a049033e3419a8e2975cf3f572f4e6e9a0000000000000000000000000000000000000000000000000000000000007623000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662155-2_FixDVNsAndRestoreSendLibLegacy-FRAX-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662155-2_FixDVNsAndRestoreSendLibLegacy-FRAX-81457.json new file mode 100644 index 00000000..295094e8 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662155-2_FixDVNsAndRestoreSendLibLegacy-FRAX-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776662155000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d00000000000000000000000000000000000000000000000000000000000007595000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662157-2_FixDVNsAndRestoreSendLibLegacy-FRAX-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662157-2_FixDVNsAndRestoreSendLibLegacy-FRAX-8453.json new file mode 100644 index 00000000..19d0122c --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662157-2_FixDVNsAndRestoreSendLibLegacy-FRAX-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776662157000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d00000000000000000000000000000000000000000000000000000000000007595000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d000000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f9000000000000000000000000023432452b720c80553458496d4d9d7c5003280d0000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff3000000000000000000000000023432452b720c80553458496d4d9d7c5003280d00000000000000000000000000000000000000000000000000000000000007623000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662159-2_FixDVNsAndRestoreSendLibLegacy-FPI-1088.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662159-2_FixDVNsAndRestoreSendLibLegacy-FPI-1088.json new file mode 100644 index 00000000..2ce22931 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662159-2_FixDVNsAndRestoreSendLibLegacy-FPI-1088.json @@ -0,0 +1,10 @@ +{ + "chainId": 1088, + "createdAt": 1776662159000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000000000000000000000000000000000000000759500000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000000000000000000000000000000000000000762300000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075e800000000000000000000000063e39ccb510926d05a0ae7817c8f1cc61c5bdd6c","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662161-2_FixDVNsAndRestoreSendLibLegacy-FPI-81457.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662161-2_FixDVNsAndRestoreSendLibLegacy-FPI-81457.json new file mode 100644 index 00000000..44449c5f --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662161-2_FixDVNsAndRestoreSendLibLegacy-FPI-81457.json @@ -0,0 +1,10 @@ +{ + "chainId": 81457, + "createdAt": 1776662161000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d0000000000000000000000000000000000000000000000000000000000007595000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c0982100000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000377530cda84dfb2673bf4d145dcf0c4d7fdcb5b600000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075e80000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000300000000000000000000000070bf42c69173d6e33b834f59630dac592c70b369000000000000000000000000c097ab8cd7b053326dfe9fb3e3a31a0cce3b526f000000000000000000000000fa06f93ad99825114c8f8738943734b07fdd162f0000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075e8000000000000000000000000c1b621b18187f74c8f6d52a6f709dd2780c09821","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file diff --git a/scripts/ops/fix/FixLegacyDVNs/txs/1776662165-2_FixDVNsAndRestoreSendLibLegacy-FPI-8453.json b/scripts/ops/fix/FixLegacyDVNs/txs/1776662165-2_FixDVNsAndRestoreSendLibLegacy-FPI-8453.json new file mode 100644 index 00000000..941def15 --- /dev/null +++ b/scripts/ops/fix/FixLegacyDVNs/txs/1776662165-2_FixDVNsAndRestoreSendLibLegacy-FPI-8453.json @@ -0,0 +1,10 @@ +{ + "chainId": 8453, + "createdAt": 1776662165000, + "meta": { + "description": "", + "name": "Transactions Batch" + }, + "transactions": [{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000075950000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d0000000000000000000000000000000000000000000000000000000000007595000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d00000000000000000000000000000000000000000000000000000000000075c7000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda200000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x6dbd9f900000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d000000000000000000000000c70ab6f32772f59fbfc23889caf4ba3376c84baf00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000076230000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000003000000000000000000000000187cf227f81c287303ee765ee001e151347faaa20000000000000000000000009e059a54699a285714207b43b055483e78faac25000000000000000000000000a7b5189bca84cd304d8553977c7c614329750d990000000000000000000000000000000000000000000000000000000000000000","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"},{"data":"0x9535ff300000000000000000000000006eca253b102d41b6b69ac815b9cc6bd47ef1979d0000000000000000000000000000000000000000000000000000000000007623000000000000000000000000b5320b0b3a13cc860893e2bd79fcd7e13484dda2","operation":"0","to":"0x1a44076050125825900e736c501f859c50fE728c","value":"0"}], + "version": "1.0" +} \ No newline at end of file