@across-protocol/contracts 5.0.13-alpha.1 → 5.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/contracts/handlers/MulticallHandler.sol +5 -1
- package/contracts/handlers/TronMulticallHandler.sol +20 -0
- package/contracts/tron/TronPeripheryImports.sol +1 -0
- package/dist/broadcast/deployed-addresses.json +160 -191
- package/dist/evm/artifacts/DstOFTHandler.sol/DstOFTHandler.json +1 -1
- package/dist/evm/artifacts/MulticallHandler.sol/MulticallHandler.json +1 -1
- package/dist/evm/artifacts/PermissionedMulticallHandler.sol/PermissionedMulticallHandler.json +1 -1
- package/dist/evm/artifacts/SponsoredCCTPDstPeriphery.sol/SponsoredCCTPDstPeriphery.json +1 -1
- package/dist/evm/artifacts/SponsoredCCTPSrcPeriphery.sol/SponsoredCCTPSrcPeriphery.json +1 -1
- package/dist/evm/artifacts/SponsoredOFTSrcPeriphery.sol/SponsoredOFTSrcPeriphery.json +1 -1
- package/dist/evm/artifacts/TronMulticallHandler.sol/TronMulticallHandler.json +1 -0
- package/dist/src/consts.js +5 -0
- package/package.json +3 -2
|
@@ -109,7 +109,7 @@ contract MulticallHandler is AcrossMessageHandler, ReentrancyGuard {
|
|
|
109
109
|
// ERC20 token.
|
|
110
110
|
uint256 amount = IERC20(token).balanceOf(address(this));
|
|
111
111
|
if (amount > 0) {
|
|
112
|
-
|
|
112
|
+
_safeTransfer(token, destination, amount);
|
|
113
113
|
emit DrainedTokens(destination, token, amount);
|
|
114
114
|
}
|
|
115
115
|
} else {
|
|
@@ -179,6 +179,10 @@ contract MulticallHandler is AcrossMessageHandler, ReentrancyGuard {
|
|
|
179
179
|
if (!success) revert ReplacementCallFailed(callData);
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
+
function _safeTransfer(address token, address to, uint256 amount) internal virtual {
|
|
183
|
+
IERC20(token).safeTransfer(to, amount);
|
|
184
|
+
}
|
|
185
|
+
|
|
182
186
|
function _requireSelf() internal view {
|
|
183
187
|
// Must be called by this contract to ensure that this cannot be triggered without the explicit consent of the
|
|
184
188
|
// depositor (for a valid relay).
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// SPDX-License-Identifier: GPL-3.0-only
|
|
2
|
+
pragma solidity ^0.8.0;
|
|
3
|
+
|
|
4
|
+
import { MulticallHandler } from "./MulticallHandler.sol";
|
|
5
|
+
import { TronTransferLib } from "../libraries/TronTransferLib.sol";
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* @title TronMulticallHandler
|
|
9
|
+
* @notice Tron-specific variant of `MulticallHandler` for tokens such as Tron USDT whose
|
|
10
|
+
* `transfer` returns false even when it moves balances successfully.
|
|
11
|
+
* @dev Inherits all multicall behavior from the mainline handler and overrides only the
|
|
12
|
+
* ERC20 drain transfer hook to use a balance-delta success check.
|
|
13
|
+
* @custom:security-contact bugs@across.to
|
|
14
|
+
*/
|
|
15
|
+
contract TronMulticallHandler is MulticallHandler {
|
|
16
|
+
/// @dev TRON OVERRIDE: was `IERC20(token).safeTransfer(to, amount)` in the parent.
|
|
17
|
+
function _safeTransfer(address token, address to, uint256 amount) internal override {
|
|
18
|
+
TronTransferLib._safeTransferBalanceCheck(token, to, amount);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
@@ -4,3 +4,4 @@ pragma solidity ^0.8.0;
|
|
|
4
4
|
// Entry point for SpokePoolPeriphery and SwapProxy in the tron Foundry profile. These use OZ v4
|
|
5
5
|
// and are kept in a separate file from SP1Helios/Tron_SpokePool (OZ v5) to avoid name collisions.
|
|
6
6
|
import "../periphery/SpokePoolPeriphery.sol";
|
|
7
|
+
import "../handlers/TronMulticallHandler.sol";
|
|
@@ -115,6 +115,10 @@
|
|
|
115
115
|
"address": "0xb47fD69FE25878F4E43aAF2F9ad7D0A3A0B22363",
|
|
116
116
|
"block_number": 23419367
|
|
117
117
|
},
|
|
118
|
+
"Universal_Adapter_4217": {
|
|
119
|
+
"address": "0x4577980eBFCC6fC8ff516aC06dA9e729c40cA57c",
|
|
120
|
+
"block_number": 24421479
|
|
121
|
+
},
|
|
118
122
|
"Blast_Adapter": {
|
|
119
123
|
"address": "0xF2bEf5E905AAE0295003ab14872F811E914EdD81",
|
|
120
124
|
"block_number": 20221494
|
|
@@ -195,15 +199,10 @@
|
|
|
195
199
|
"block_number": 24745925,
|
|
196
200
|
"transaction_hash": "0xb46c184af2359773c6714d0bcfa4969690f0b703fa134ad313e291bd15961289"
|
|
197
201
|
},
|
|
198
|
-
"
|
|
199
|
-
"address": "
|
|
200
|
-
"block_number":
|
|
201
|
-
"transaction_hash": "
|
|
202
|
-
},
|
|
203
|
-
"DstOFTHandler": {
|
|
204
|
-
"address": "0xD59D844287A6F808865eA697653588c9Ee42Dc1d",
|
|
205
|
-
"block_number": 25231329,
|
|
206
|
-
"transaction_hash": "0x387fd87026a68def73450bc6aa51d0befa8f551832a3ac8faeea870f4e7220c5"
|
|
202
|
+
"DonationBox_CCTP_USDC": {
|
|
203
|
+
"address": "0x109Db572e719Fa363dC53Fbaf3617422159060c9",
|
|
204
|
+
"block_number": 25050835,
|
|
205
|
+
"transaction_hash": "0x0da10665bd5c3250388d5e07ae01004275fda9033d8eccfb94932623df6f667c"
|
|
207
206
|
},
|
|
208
207
|
"OP_Adapter_57073": {
|
|
209
208
|
"address": "0x545E43B6eC2f9a44CAa531298699Ff05958670B5",
|
|
@@ -215,35 +214,45 @@
|
|
|
215
214
|
"block_number": 19084679,
|
|
216
215
|
"transaction_hash": "0xa2a7b2c6812fb8ae34539fb04cd5f2a9112da1c7f6ffce0ddcf1fee7e43acf48"
|
|
217
216
|
},
|
|
217
|
+
"PermissionedMulticallHandler": {
|
|
218
|
+
"address": "0x64a43393866DBA0044879979fAa7AD3d000622e9",
|
|
219
|
+
"block_number": 24021499,
|
|
220
|
+
"transaction_hash": "0x70b3edf99db66aac34338c3686cd708ddfc2b503c2f707f51ced67dc50e5022f"
|
|
221
|
+
},
|
|
218
222
|
"Safe": {
|
|
219
223
|
"address": "0x4c45F70B1d9a7A6D1984daccAd74D0E973B73F01",
|
|
220
224
|
"block_number": 25138380,
|
|
221
225
|
"transaction_hash": "0x135450e78b12f576b5d294d2fe26000eb1bb0bbf9ba755f5e8cd41d9587ac0f9"
|
|
222
226
|
},
|
|
223
|
-
"
|
|
224
|
-
"address": "
|
|
225
|
-
"block_number":
|
|
226
|
-
"transaction_hash": "
|
|
227
|
+
"PermissionedMulticallHandler_CCTP_USDC": {
|
|
228
|
+
"address": "0xDd52f8134f85f3979fbA24387Ce0CEC05937259E",
|
|
229
|
+
"block_number": 25050834,
|
|
230
|
+
"transaction_hash": "0xc7f656f7ae6a105c3cef94d67c488c14b2e44037af06dd3541d13e87305b8d53"
|
|
231
|
+
},
|
|
232
|
+
"SponsoredCCTPDstPeriphery_CCTP_USDC": {
|
|
233
|
+
"address": "0x214C19FBcdFb683F2c726B4BBAf24AB483bFaDf3",
|
|
234
|
+
"block_number": 25050837,
|
|
235
|
+
"transaction_hash": "0xd3a1f51d6917a22db3fafe940a9ce0b72986974eee1861c0706d46a49ba408e2"
|
|
227
236
|
},
|
|
228
237
|
"SponsoredCCTPSrcPeriphery": {
|
|
229
|
-
"address": "
|
|
230
|
-
"block_number":
|
|
231
|
-
"transaction_hash": "
|
|
238
|
+
"address": "0x6769155b16F25D317819eFef011E0A50A48e83c5",
|
|
239
|
+
"block_number": 24451096,
|
|
240
|
+
"transaction_hash": "0x2015905f5cbdb4afeba30deb6dc0f0f779ba4af5bc43edceabf0bf4343cb290b"
|
|
232
241
|
},
|
|
233
242
|
"SponsoredOFTSrcPeriphery": {
|
|
234
|
-
"address": "
|
|
235
|
-
"block_number":
|
|
236
|
-
"transaction_hash": "
|
|
243
|
+
"address": "0xc80B267469D509ae45Df65845B291CBbe1945CB9",
|
|
244
|
+
"block_number": 24451418,
|
|
245
|
+
"transaction_hash": "0x66bd97f0c253470cc4c39266d58a623b1d97d934e308d7e738890c30f1ac4ab5"
|
|
237
246
|
},
|
|
238
247
|
"TransferProxy": {
|
|
239
248
|
"address": "0x03743372098Aa51E1fCe537D51025F08b55C4144",
|
|
240
249
|
"block_number": 24690994,
|
|
241
250
|
"transaction_hash": "0x869926fddcfc39456d4479bda50e644dac93aea0f731e1313ac7d5b80134db6c"
|
|
242
251
|
},
|
|
243
|
-
"
|
|
244
|
-
"address": "
|
|
245
|
-
"block_number":
|
|
246
|
-
"transaction_hash": "
|
|
252
|
+
"Universal_Adapter_43114": {
|
|
253
|
+
"address": "0x1af659333172DC502bD71Cf5b889521C97751838",
|
|
254
|
+
"block_number": 25237918,
|
|
255
|
+
"transaction_hash": "0x26556c4f14f62b56ef0a4359e83d62751e21d4e3fe9eb855e8e84c12dba41853"
|
|
247
256
|
},
|
|
248
257
|
"WithdrawImplementation": {
|
|
249
258
|
"address": "0x679D43e1d304001538Bf083D421484fD67c00a45",
|
|
@@ -314,20 +323,10 @@
|
|
|
314
323
|
"block_number": 151852638,
|
|
315
324
|
"transaction_hash": "0xc56c8cff88f814d4fc41149007b3b867cd8672ba7541d4153bd7e5dfbbacfb44"
|
|
316
325
|
},
|
|
317
|
-
"PermissionedMulticallHandler": {
|
|
318
|
-
"address": "0x641119c49Ac149DadaEC95D4fA8FFbe1eaB448fc",
|
|
319
|
-
"block_number": 152070131,
|
|
320
|
-
"transaction_hash": "0xf296c864b8c38fd55de6116371264e488c22cedbf70d17596782fe7437322eb5"
|
|
321
|
-
},
|
|
322
|
-
"SponsoredCCTPDstPeriphery": {
|
|
323
|
-
"address": "0x7caAe751f8eAfEC5646A730d86c6Ae2d47a31Ca6",
|
|
324
|
-
"block_number": 152070134,
|
|
325
|
-
"transaction_hash": "0xa6eae1e6fa1febf359d475b5ba807d4fa1e6fbbf121fe4d06fcb26d0f75280e5"
|
|
326
|
-
},
|
|
327
326
|
"SponsoredCCTPSrcPeriphery": {
|
|
328
|
-
"address": "
|
|
329
|
-
"block_number":
|
|
330
|
-
"transaction_hash": "
|
|
327
|
+
"address": "0x4d11A23E4408eF08Ae1216B3917560e0001CD000",
|
|
328
|
+
"block_number": 147713295,
|
|
329
|
+
"transaction_hash": "0x8c34d7508b8348857cbbfa2065efdbdab61eb9b39f2df9e817761cccdbd94e95"
|
|
331
330
|
},
|
|
332
331
|
"TransferProxy": {
|
|
333
332
|
"address": "0x03743372098Aa51E1fCe537D51025F08b55C4144",
|
|
@@ -453,14 +452,14 @@
|
|
|
453
452
|
"transaction_hash": "0x52e78f777ab18c2b0211ee814a5b9c317b348f88c7af157b0e12df7535e4f8bd"
|
|
454
453
|
},
|
|
455
454
|
"SponsoredCCTPSrcPeriphery": {
|
|
456
|
-
"address": "
|
|
457
|
-
"block_number":
|
|
458
|
-
"transaction_hash": "
|
|
455
|
+
"address": "0xce9Cf0C8f8121b573f6212344F53BC7746846e71",
|
|
456
|
+
"block_number": 40277181,
|
|
457
|
+
"transaction_hash": "0x5d0fcdfb942ef6868c78269cc0a5aa92879a9609f58aed0d10ec26290c9276d8"
|
|
459
458
|
},
|
|
460
459
|
"SponsoredOFTSrcPeriphery": {
|
|
461
|
-
"address": "
|
|
462
|
-
"block_number":
|
|
463
|
-
"transaction_hash": "
|
|
460
|
+
"address": "0xC920dAbe5f40d0785Be9b4aCf5B4B8D662a5955A",
|
|
461
|
+
"block_number": 40280420,
|
|
462
|
+
"transaction_hash": "0xf25df6cb3747cb2c6033957ee2cab3d36381219f0588d4b56209afbcfaa61db6"
|
|
464
463
|
},
|
|
465
464
|
"WithdrawImplementation": {
|
|
466
465
|
"address": "0x679D43e1d304001538Bf083D421484fD67c00a45",
|
|
@@ -543,35 +542,20 @@
|
|
|
543
542
|
"block_number": 84729684,
|
|
544
543
|
"transaction_hash": "0xdcc74125b85cb1a7e34e6bfe318cc565b7f5423e1fe1b187dcd331fd80565a83"
|
|
545
544
|
},
|
|
546
|
-
"PermissionedMulticallHandler": {
|
|
547
|
-
"address": "0x43e1c2a2720BaA4a090aCeC63dBe757BeE81C2FA",
|
|
548
|
-
"block_number": 87819354,
|
|
549
|
-
"transaction_hash": "0x1b0abaa6c2341efdd2c682bb913615cf34d2b46f09bd4982303fd29084cb8976"
|
|
550
|
-
},
|
|
551
|
-
"DstOFTHandler": {
|
|
552
|
-
"address": "0xC7e181D8aC22E25183c12e3693d26FBf62Da903A",
|
|
553
|
-
"block_number": 87819356,
|
|
554
|
-
"transaction_hash": "0x1fbd9c798bb0da5d52a152a539b1eaf1dc011e038660bc25fe295947cbe9a2ba"
|
|
555
|
-
},
|
|
556
545
|
"Safe": {
|
|
557
546
|
"address": "0xd396CcB6770EAB84045c9Bce2939c478639E2A7F",
|
|
558
547
|
"block_number": 87180073,
|
|
559
548
|
"transaction_hash": "0xecd589bda3e78dcba4ad5bcb838e49889248ee07c09b3d2296259a62dcdd06f2"
|
|
560
549
|
},
|
|
561
|
-
"SponsoredCCTPDstPeriphery": {
|
|
562
|
-
"address": "0x02a00425f619C5e2B25e3d138Fe80a71201B007E",
|
|
563
|
-
"block_number": 87429984,
|
|
564
|
-
"transaction_hash": "0xb06fb5eced2f762203130ce68220c8337728e0925acddb67317c6bd85852645d"
|
|
565
|
-
},
|
|
566
550
|
"SponsoredCCTPSrcPeriphery": {
|
|
567
|
-
"address": "
|
|
568
|
-
"block_number":
|
|
569
|
-
"transaction_hash": "
|
|
551
|
+
"address": "0x6005CD9f10c0Dc654445f138350b2FA7370BE42d",
|
|
552
|
+
"block_number": 82952908,
|
|
553
|
+
"transaction_hash": "0x761562ffb7ea735da1c9de3269e765f5765411bac767491b1519d370f28b20f0"
|
|
570
554
|
},
|
|
571
555
|
"SponsoredOFTSrcPeriphery": {
|
|
572
|
-
"address": "
|
|
573
|
-
"block_number":
|
|
574
|
-
"transaction_hash": "
|
|
556
|
+
"address": "0x43e15Fb40DaDdA50E1d2BA300416811f6c28540c",
|
|
557
|
+
"block_number": 82954450,
|
|
558
|
+
"transaction_hash": "0x15dac1b43d6758b8aeeffcbf99239b61e7ac0381694079e5084e5e789c9255b0"
|
|
575
559
|
},
|
|
576
560
|
"TransferProxy": {
|
|
577
561
|
"address": "0x03743372098Aa51E1fCe537D51025F08b55C4144",
|
|
@@ -635,35 +619,20 @@
|
|
|
635
619
|
"block_number": 64241716,
|
|
636
620
|
"transaction_hash": "0x40c560c46d8a4fdbd5947512cc9b6c5f322abac96231bf635b2f4c1768621f52"
|
|
637
621
|
},
|
|
638
|
-
"PermissionedMulticallHandler": {
|
|
639
|
-
"address": "0x7245E9A6fd2E7494eDD74A61e947fA26d202400C",
|
|
640
|
-
"block_number": 78704214,
|
|
641
|
-
"transaction_hash": "0x7ddf97c70a95b4e38e7bce9e47142215138578dfd3cad3598d8770489477a483"
|
|
642
|
-
},
|
|
643
|
-
"DstOFTHandler": {
|
|
644
|
-
"address": "0xD43463Fadd73373bE260b67F5825274F4403dAF0",
|
|
645
|
-
"block_number": 78704220,
|
|
646
|
-
"transaction_hash": "0x859536339a7ac4c2d51cd4b31333e8fd705d3024b7b5ad8e104de8fbfae124c5"
|
|
647
|
-
},
|
|
648
622
|
"Safe": {
|
|
649
623
|
"address": "0xd396CcB6770EAB84045c9Bce2939c478639E2A7F",
|
|
650
624
|
"block_number": 67900920,
|
|
651
625
|
"transaction_hash": "0x600cbf25870f7204c57ae5b3f3e7b8df0feeb00ec3e578fefb4f67280c9cfe77"
|
|
652
626
|
},
|
|
653
|
-
"SponsoredCCTPDstPeriphery": {
|
|
654
|
-
"address": "0x647aFB7d935Ff0aaE4F0DdEfE0499d13AdE69178",
|
|
655
|
-
"block_number": 77181730,
|
|
656
|
-
"transaction_hash": "0x002c7363c99f96850e3ddb77e027c1a76fa84383cde9065d1838733016947df6"
|
|
657
|
-
},
|
|
658
627
|
"SponsoredCCTPSrcPeriphery": {
|
|
659
|
-
"address": "
|
|
660
|
-
"block_number":
|
|
661
|
-
"transaction_hash": "
|
|
628
|
+
"address": "0xc49226858478DE8757E425661b1B5297102330d7",
|
|
629
|
+
"block_number": 55209435,
|
|
630
|
+
"transaction_hash": "0xef1ee7424466245bd4dcdb47e0bb75c22a26073d700e64fe39db38d301642ffa"
|
|
662
631
|
},
|
|
663
632
|
"SponsoredOFTSrcPeriphery": {
|
|
664
|
-
"address": "
|
|
665
|
-
"block_number":
|
|
666
|
-
"transaction_hash": "
|
|
633
|
+
"address": "0xB0C6Ed64a77A3D8F61b21922B13F39525Fbf5fC0",
|
|
634
|
+
"block_number": 55217119,
|
|
635
|
+
"transaction_hash": "0xab023b0f30ddc5a09752c8b8ef4efd96b5bc731190e54d65138db6de48374fa0"
|
|
667
636
|
},
|
|
668
637
|
"WithdrawImplementation": {
|
|
669
638
|
"address": "0x679D43e1d304001538Bf083D421484fD67c00a45",
|
|
@@ -835,20 +804,10 @@
|
|
|
835
804
|
"block_number": 29984927,
|
|
836
805
|
"transaction_hash": "0xfca2ae3fcca621ae80560c43b4bc7172b03a4e13aaa9aaf54472909c396e29f8"
|
|
837
806
|
},
|
|
838
|
-
"PermissionedMulticallHandler": {
|
|
839
|
-
"address": "0x5c3Dd98981EB4c8f0835F3d5634Ba6Dd5E725575",
|
|
840
|
-
"block_number": 30202745,
|
|
841
|
-
"transaction_hash": "0x5b738add0d5cfccb481e7d18760fa500e5bb920cd55b89ecb7491c36675edb03"
|
|
842
|
-
},
|
|
843
|
-
"SponsoredCCTPDstPeriphery": {
|
|
844
|
-
"address": "0x219044ECb0Eb0b3f0D8A614A9633A89f0b5f81f8",
|
|
845
|
-
"block_number": 30202748,
|
|
846
|
-
"transaction_hash": "0xf7f79d4327e80ca0ab540c45fb808c3801ee48634a1625c496d47e0554f3be07"
|
|
847
|
-
},
|
|
848
807
|
"SponsoredCCTPSrcPeriphery": {
|
|
849
|
-
"address": "
|
|
850
|
-
"block_number":
|
|
851
|
-
"transaction_hash": "
|
|
808
|
+
"address": "0x2C7a3cCd1a8F4f96174c42E0638AAb3BDA6Bc923",
|
|
809
|
+
"block_number": 25845007,
|
|
810
|
+
"transaction_hash": "0x67f84d59d697028bba264ada6bafef4bc7c4a4efd9dc4e4c4031d7d151558c00"
|
|
852
811
|
},
|
|
853
812
|
"WithdrawImplementation": {
|
|
854
813
|
"address": "0x679D43e1d304001538Bf083D421484fD67c00a45",
|
|
@@ -919,15 +878,25 @@
|
|
|
919
878
|
"block_number": 31071129,
|
|
920
879
|
"transaction_hash": "0xd78f71ca11de6d28fe02006adf91b55f05efe0ffb1e0b2f51cb450cdf5ade5c0"
|
|
921
880
|
},
|
|
922
|
-
"
|
|
923
|
-
"address": "
|
|
924
|
-
"block_number":
|
|
925
|
-
"transaction_hash": "
|
|
881
|
+
"DonationBox_CCTP_USDC_EVM": {
|
|
882
|
+
"address": "0x64a0A69d16518E4544fAb83C624e01339DC36945",
|
|
883
|
+
"block_number": 35005190,
|
|
884
|
+
"transaction_hash": "0xed4511c6892fd1379e7e9d03ec4bb61c7f036a50cecc9adfb4fdd3ccdfe4b145"
|
|
885
|
+
},
|
|
886
|
+
"DonationBox_OFT_USDT": {
|
|
887
|
+
"address": "0x1635Eb08fe35e8297ddd394Abc6d53f39330A8FE",
|
|
888
|
+
"block_number": 34254973,
|
|
889
|
+
"transaction_hash": "0x519e48cc52914b81c14de8fd00ae9585cff27a1c5cdb263ea73daf308693a7d5"
|
|
926
890
|
},
|
|
927
|
-
"
|
|
928
|
-
"address": "
|
|
929
|
-
"block_number":
|
|
930
|
-
"transaction_hash": "
|
|
891
|
+
"PermissionedMulticallHandler_OFT_USDT": {
|
|
892
|
+
"address": "0xeaa13e675Fb95821B99D34B9c94c3D60fecAdd4A",
|
|
893
|
+
"block_number": 34255034,
|
|
894
|
+
"transaction_hash": "0x39825b39641504f3b2dca5e70fac9d8c0c6c0595ca2fb115804092ac6efe7dad"
|
|
895
|
+
},
|
|
896
|
+
"DstOFTHandler_OFT_USDT": {
|
|
897
|
+
"address": "0xeb8feE79B59D048162986B0432a187Be46322284",
|
|
898
|
+
"block_number": 34255095,
|
|
899
|
+
"transaction_hash": "0x60d15964d33311f23aeba14cedd9f14a8f46a89dcad084e3e244519845130188"
|
|
931
900
|
},
|
|
932
901
|
"HyperliquidDepositHandler": {
|
|
933
902
|
"address": "0xbFB53E9C8acCe6D6aC54885A8e33A7Aec95427D5",
|
|
@@ -939,10 +908,35 @@
|
|
|
939
908
|
"block_number": 32382094,
|
|
940
909
|
"transaction_hash": "0x188d49f786ebe99a6dbeb7c845d525064431a1eb615d0bea275d8da8a32953b1"
|
|
941
910
|
},
|
|
942
|
-
"
|
|
943
|
-
"address": "
|
|
944
|
-
"block_number":
|
|
945
|
-
"transaction_hash": "
|
|
911
|
+
"PermissionedMulticallHandler_CCTP_USDC": {
|
|
912
|
+
"address": "0xD7B719ed2b02Bfa0247600EDd6bd8Fb3957e95c8",
|
|
913
|
+
"block_number": 33686717,
|
|
914
|
+
"transaction_hash": "0x51bc99dd5ba78198246e16eee7b2f94dbe123720f05bffd1dd0862d5da8e2fb5"
|
|
915
|
+
},
|
|
916
|
+
"DonationBox_CCTP_USDC": {
|
|
917
|
+
"address": "0xe3D0D1B6d3571EDC9657dB5076AC1Be5f0bBfE60",
|
|
918
|
+
"block_number": 33686717,
|
|
919
|
+
"transaction_hash": "0x38305e431db9c74a6f9fa2f6209c2086cc4b79f10ca3bfae773e4313914eaf28"
|
|
920
|
+
},
|
|
921
|
+
"SponsoredCCTPDstPeriphery_CCTP_USDC": {
|
|
922
|
+
"address": "0x1CFE31eD57c2d2b4CB69c0298A1b586965b882d5",
|
|
923
|
+
"block_number": 33686717,
|
|
924
|
+
"transaction_hash": "0x5730f65ea3507b2daea9a0a143b3da717d7f2194e428993fb04fddfb714eb66e"
|
|
925
|
+
},
|
|
926
|
+
"PermissionedMulticallHandler_CCTP_USDH": {
|
|
927
|
+
"address": "0x9EE4300b6af03392bE493fa769DE33bb07242bfb",
|
|
928
|
+
"block_number": 33792552,
|
|
929
|
+
"transaction_hash": "0x2608d5b2b75ef17422b375b1a2d0e80e7f338b92b55f8fdbccf8ae71ef7710ef"
|
|
930
|
+
},
|
|
931
|
+
"DonationBox_CCTP_USDH": {
|
|
932
|
+
"address": "0x35B7D6e007f499c806F6d6742d7285D285e17F29",
|
|
933
|
+
"block_number": 33792552,
|
|
934
|
+
"transaction_hash": "0xe9958c68d14ed788f240cf981ed6bd1d1410b844b522c0fab5d0ed4acb2b1128"
|
|
935
|
+
},
|
|
936
|
+
"SponsoredCCTPDstPeriphery_CCTP_USDH": {
|
|
937
|
+
"address": "0x74dfB6Ab65419Fd2022614Fa8BA45e9f50a3aE59",
|
|
938
|
+
"block_number": 33792552,
|
|
939
|
+
"transaction_hash": "0xb6d72530b3ca9ed94868b38c5477c83d69d575a7fe175e4c6cb649aeb9724acd"
|
|
946
940
|
},
|
|
947
941
|
"SponsoredCCTPSrcPeriphery": {
|
|
948
942
|
"address": "0xF4E32c4aC479f0B007BC005Ec0F481A2C78Ba1B4",
|
|
@@ -950,9 +944,9 @@
|
|
|
950
944
|
"transaction_hash": "0xef3bcc6d1bb0adc5a2b88c6dbe64a2492f72ac7d27a4aa6e42e5ace34df1f531"
|
|
951
945
|
},
|
|
952
946
|
"SponsoredOFTSrcPeriphery": {
|
|
953
|
-
"address": "
|
|
954
|
-
"block_number":
|
|
955
|
-
"transaction_hash": "
|
|
947
|
+
"address": "0x93e1E5E9D840e758CC016F8b13cDf5dbAeca4b06",
|
|
948
|
+
"block_number": 34253936,
|
|
949
|
+
"transaction_hash": "0xc92f27a2736d47bed6ea737d590a27a2498fc73829ffd0b828775d0628aa14cf"
|
|
956
950
|
},
|
|
957
951
|
"TransferProxy": {
|
|
958
952
|
"address": "0x8b2C0BFaBD6DaD8cc700dde3F168D3c81CF0eEfF",
|
|
@@ -1197,25 +1191,15 @@
|
|
|
1197
1191
|
"block_number": 12012601,
|
|
1198
1192
|
"transaction_hash": "0x24e5a21ee467e4b39435f8bfc5591237aab4ac8dac096777502411837511de70"
|
|
1199
1193
|
},
|
|
1200
|
-
"PermissionedMulticallHandler": {
|
|
1201
|
-
"address": "0x8bBd8dA892f793A271af4D74C7B8895019f4ea77",
|
|
1202
|
-
"block_number": 17651466,
|
|
1203
|
-
"transaction_hash": "0xf118cce0176cbc5bdf7c1690e8e520c0f55ddb914567be1d63c14a755d3f02f3"
|
|
1204
|
-
},
|
|
1205
|
-
"DstOFTHandler": {
|
|
1206
|
-
"address": "0xDAC391869D4b1a0B658626A6F4bc90484667B617",
|
|
1207
|
-
"block_number": 17651467,
|
|
1208
|
-
"transaction_hash": "0x7acdd84944b9f50f238703bb78bf3016c2952e42b1a717f43538f00c88add3f5"
|
|
1209
|
-
},
|
|
1210
1194
|
"Safe": {
|
|
1211
1195
|
"address": "0xd396CcB6770EAB84045c9Bce2939c478639E2A7F",
|
|
1212
1196
|
"block_number": 16508591,
|
|
1213
1197
|
"transaction_hash": "0xd096a074d15cb298194d1cb8b0122be31e408f701311d1acf00bac3d9eb3df94"
|
|
1214
1198
|
},
|
|
1215
1199
|
"SponsoredOFTSrcPeriphery": {
|
|
1216
|
-
"address": "
|
|
1217
|
-
"block_number":
|
|
1218
|
-
"transaction_hash": "
|
|
1200
|
+
"address": "0x02D65fb01d3d88127dF19838902ba42c6239c0Fd",
|
|
1201
|
+
"block_number": 8234177,
|
|
1202
|
+
"transaction_hash": "0xd31511962fafb1baa7d03fac9adc513236c5187a142bb8df82c6bfa6a58f0206"
|
|
1219
1203
|
},
|
|
1220
1204
|
"WithdrawImplementation": {
|
|
1221
1205
|
"address": "0x679D43e1d304001538Bf083D421484fD67c00a45",
|
|
@@ -1282,20 +1266,25 @@
|
|
|
1282
1266
|
"block_number": 46258138,
|
|
1283
1267
|
"transaction_hash": "0x3267da18ba0bb69bad4f9dac7b1932ed00e16aa87b5a7f31cccefddafad248ec"
|
|
1284
1268
|
},
|
|
1285
|
-
"
|
|
1286
|
-
"address": "
|
|
1287
|
-
"block_number":
|
|
1288
|
-
"transaction_hash": "
|
|
1269
|
+
"PermissionedMulticallHandler_CCTP_USDC": {
|
|
1270
|
+
"address": "0xB6CAAfD8Ecf18385fFc7c020327E111a1D40A2D4",
|
|
1271
|
+
"block_number": 44959757,
|
|
1272
|
+
"transaction_hash": "0x0e3e581e4970cb3b9a193f8fddf7a63cbcc4c4f7b980139a6f685fbbfec1d459"
|
|
1273
|
+
},
|
|
1274
|
+
"DonationBox_CCTP_USDC": {
|
|
1275
|
+
"address": "0x3ff139d8d5519555aA13b0eBd357B0Ba810f06Df",
|
|
1276
|
+
"block_number": 44959758,
|
|
1277
|
+
"transaction_hash": "0x019b8a736e60768ec4410e4e38c8ae4385e23e72c0cdcc9f305269d1208948c5"
|
|
1289
1278
|
},
|
|
1290
|
-
"
|
|
1291
|
-
"address": "
|
|
1292
|
-
"block_number":
|
|
1293
|
-
"transaction_hash": "
|
|
1279
|
+
"SponsoredCCTPDstPeriphery_CCTP_USDC": {
|
|
1280
|
+
"address": "0x8dEDA155E446F5d90579C3DCe560e5b00e93F773",
|
|
1281
|
+
"block_number": 44959760,
|
|
1282
|
+
"transaction_hash": "0x052db9819150099889e890e641781eedcb3f7e016f87d72bea2984ce6554d350"
|
|
1294
1283
|
},
|
|
1295
1284
|
"SponsoredCCTPSrcPeriphery": {
|
|
1296
|
-
"address": "
|
|
1297
|
-
"block_number":
|
|
1298
|
-
"transaction_hash": "
|
|
1285
|
+
"address": "0xa30968D3468316D957B9115EAad3C1c8E450116d",
|
|
1286
|
+
"block_number": 42117817,
|
|
1287
|
+
"transaction_hash": "0x5758dcd77fd40bd8c7b4ae728de47bf0ef44e5669ee8c1987817bffc3a27a567"
|
|
1299
1288
|
},
|
|
1300
1289
|
"TransferProxy": {
|
|
1301
1290
|
"address": "0x03743372098Aa51E1fCe537D51025F08b55C4144",
|
|
@@ -1458,35 +1447,20 @@
|
|
|
1458
1447
|
"block_number": 446049597,
|
|
1459
1448
|
"transaction_hash": "0xd229b1a48cf5a207b9c1b670299d311d83fd98d6b768e6c4a67bbeef36097dc4"
|
|
1460
1449
|
},
|
|
1461
|
-
"PermissionedMulticallHandler": {
|
|
1462
|
-
"address": "0x9E61a37F5Ce1b9ed47a278efFd512BF6553a766a",
|
|
1463
|
-
"block_number": 469352325,
|
|
1464
|
-
"transaction_hash": "0x5344061bb734fbb4d7dde09a4058f88c0e7a7d521d11782b32c608933974f1fe"
|
|
1465
|
-
},
|
|
1466
|
-
"DstOFTHandler": {
|
|
1467
|
-
"address": "0x61e07fD5512c29bC344Af7453e779352Db2E5216",
|
|
1468
|
-
"block_number": 469352332,
|
|
1469
|
-
"transaction_hash": "0x3feb60320664c6073e0880722b7cf4f18dc5a9ee0c87b8cc4f8b0f4a161bc248"
|
|
1470
|
-
},
|
|
1471
1450
|
"Safe": {
|
|
1472
1451
|
"address": "0xd396CcB6770EAB84045c9Bce2939c478639E2A7F",
|
|
1473
1452
|
"block_number": 464907406,
|
|
1474
1453
|
"transaction_hash": "0x8cde1166841d14e5ccc2d87ca76d6bc0dd96c2c06255156c0a59b073563b2eee"
|
|
1475
1454
|
},
|
|
1476
|
-
"SponsoredCCTPDstPeriphery": {
|
|
1477
|
-
"address": "0xc384694df2Be9c381d596DEd22f2A69D3aBA07d3",
|
|
1478
|
-
"block_number": 466621348,
|
|
1479
|
-
"transaction_hash": "0x957cf4f161a72290724dbd1c0ef11180b27233c27b1c8522a73ed9fbde3bbc46"
|
|
1480
|
-
},
|
|
1481
1455
|
"SponsoredCCTPSrcPeriphery": {
|
|
1482
|
-
"address": "
|
|
1483
|
-
"block_number":
|
|
1484
|
-
"transaction_hash": "
|
|
1456
|
+
"address": "0xc9c54d789ebc18169d942E781C75bb4e3D19a27b",
|
|
1457
|
+
"block_number": 431818720,
|
|
1458
|
+
"transaction_hash": "0xf5a3b7a8b76f8e57496454a4601115fe93bca9898b8a456b306f3c752e7d1b0c"
|
|
1485
1459
|
},
|
|
1486
1460
|
"SponsoredOFTSrcPeriphery": {
|
|
1487
|
-
"address": "
|
|
1488
|
-
"block_number":
|
|
1489
|
-
"transaction_hash": "
|
|
1461
|
+
"address": "0x39E4a5a7dED068831ea8D1c1012CEa07a811F624",
|
|
1462
|
+
"block_number": 431835607,
|
|
1463
|
+
"transaction_hash": "0x3619b5833ac837b8b18a437392b9706906247e9d898235768a98562307c8c577"
|
|
1490
1464
|
},
|
|
1491
1465
|
"TransferProxy": {
|
|
1492
1466
|
"address": "0x03743372098Aa51E1fCe537D51025F08b55C4144",
|
|
@@ -1500,6 +1474,26 @@
|
|
|
1500
1474
|
}
|
|
1501
1475
|
}
|
|
1502
1476
|
},
|
|
1477
|
+
"43114": {
|
|
1478
|
+
"chain_name": "Avalanche",
|
|
1479
|
+
"contracts": {
|
|
1480
|
+
"SP1Helios": {
|
|
1481
|
+
"address": "0x3BED21dAe767e4Df894B31b14aD32369cE4bad8b",
|
|
1482
|
+
"block_number": 87017813,
|
|
1483
|
+
"transaction_hash": "0x3c91515e112c6603fc8032fe1bc51c6670f39bba287ea931b5b0c7e88463fda0"
|
|
1484
|
+
},
|
|
1485
|
+
"Safe": {
|
|
1486
|
+
"address": "0xd396CcB6770EAB84045c9Bce2939c478639E2A7F",
|
|
1487
|
+
"block_number": 86958004,
|
|
1488
|
+
"transaction_hash": "0x200b98e4ec8b7f99c0a41ea4732e8a11a5c2d4f6915c9d7d43f0bc083de8204a"
|
|
1489
|
+
},
|
|
1490
|
+
"SpokePool": {
|
|
1491
|
+
"address": "0x292A00f2368187073E80AB94fA03AFD8c796d450",
|
|
1492
|
+
"block_number": 87017827,
|
|
1493
|
+
"transaction_hash": "0x91b03ff4987f357528b49d3b9e0e7e08abbd90719f407f16fecdf77be4ca1bbe"
|
|
1494
|
+
}
|
|
1495
|
+
}
|
|
1496
|
+
},
|
|
1503
1497
|
"57073": {
|
|
1504
1498
|
"chain_name": "Ink",
|
|
1505
1499
|
"contracts": {
|
|
@@ -1550,35 +1544,20 @@
|
|
|
1550
1544
|
"block_number": 41151282,
|
|
1551
1545
|
"transaction_hash": "0x4e6ab9a1f45ae5c19dde939a00c5dede6032cb3d823a3ae61317eaf1212dafa5"
|
|
1552
1546
|
},
|
|
1553
|
-
"PermissionedMulticallHandler": {
|
|
1554
|
-
"address": "0x02B8733763dD76f73b8573e668ecA3343a7D65e7",
|
|
1555
|
-
"block_number": 46950338,
|
|
1556
|
-
"transaction_hash": "0xe9a98aa80eabdcb860a87a59048808ba6a4a3e047ec99a2b993576692c7bb3b4"
|
|
1557
|
-
},
|
|
1558
|
-
"DstOFTHandler": {
|
|
1559
|
-
"address": "0xD0c27170C13577f47796412356303834e10C056f",
|
|
1560
|
-
"block_number": 46950340,
|
|
1561
|
-
"transaction_hash": "0x2b4812e349e6c478a205fd219857fd2e671bd9b00a9e6126a2f448b845fd9f81"
|
|
1562
|
-
},
|
|
1563
1547
|
"Safe": {
|
|
1564
1548
|
"address": "0xd396CcB6770EAB84045c9Bce2939c478639E2A7F",
|
|
1565
1549
|
"block_number": 45807415,
|
|
1566
1550
|
"transaction_hash": "0xf1e9919bbbc4cabaad6e7357a122ef3f8e91aba170a88db804a6b506bfecb236"
|
|
1567
1551
|
},
|
|
1568
|
-
"SponsoredCCTPDstPeriphery": {
|
|
1569
|
-
"address": "0x087B70E43BF01359678E7b927bbAC76D175F3293",
|
|
1570
|
-
"block_number": 46323662,
|
|
1571
|
-
"transaction_hash": "0x9c08e15808fd63896ac88b97dcf4dc80255ea0cae0c93d8e404e7276b5ee4698"
|
|
1572
|
-
},
|
|
1573
1552
|
"SponsoredCCTPSrcPeriphery": {
|
|
1574
|
-
"address": "
|
|
1575
|
-
"block_number":
|
|
1576
|
-
"transaction_hash": "
|
|
1553
|
+
"address": "0x1771c470d41b8c39338450C380bf2C080a2CEdD8",
|
|
1554
|
+
"block_number": 37528460,
|
|
1555
|
+
"transaction_hash": "0xaac7b7a84b7a801e6306dd2e8e127ddca94e57d27a2a731207e5f6427ee9bdba"
|
|
1577
1556
|
},
|
|
1578
1557
|
"SponsoredOFTSrcPeriphery": {
|
|
1579
|
-
"address": "
|
|
1580
|
-
"block_number":
|
|
1581
|
-
"transaction_hash": "
|
|
1558
|
+
"address": "0xFE9D541c92E4e90437C7152A00244886dE37a658",
|
|
1559
|
+
"block_number": 37531009,
|
|
1560
|
+
"transaction_hash": "0xbc3beb33c2e4887b068233cae2fb8ce82a940e52658688e774a317e605d4364f"
|
|
1582
1561
|
},
|
|
1583
1562
|
"WithdrawImplementation": {
|
|
1584
1563
|
"address": "0x679D43e1d304001538Bf083D421484fD67c00a45",
|
|
@@ -1637,20 +1616,10 @@
|
|
|
1637
1616
|
"block_number": 30719985,
|
|
1638
1617
|
"transaction_hash": "0x3b35745fa6f0cf7f9d3edac1904f6afe1ee3e9b1e31048ff781eb0c0fa0e20d5"
|
|
1639
1618
|
},
|
|
1640
|
-
"PermissionedMulticallHandler": {
|
|
1641
|
-
"address": "0x57322327b4F532cF401a21EB87fa975641cba0e6",
|
|
1642
|
-
"block_number": 30780149,
|
|
1643
|
-
"transaction_hash": "0x4d70314f04e41eb589e90a34b10175081d609c7099c0c40b558c162cce6bc24c"
|
|
1644
|
-
},
|
|
1645
|
-
"SponsoredCCTPDstPeriphery": {
|
|
1646
|
-
"address": "0x6BD167bff542Ab595F0296333d70202aE09CC334",
|
|
1647
|
-
"block_number": 30780151,
|
|
1648
|
-
"transaction_hash": "0xf6b28903c9eb0c924b7012fe689a2f0380c0bef60ada6a9f7031346c1ba664b4"
|
|
1649
|
-
},
|
|
1650
1619
|
"SponsoredCCTPSrcPeriphery": {
|
|
1651
|
-
"address": "
|
|
1652
|
-
"block_number":
|
|
1653
|
-
"transaction_hash": "
|
|
1620
|
+
"address": "0xe3E88958d181AB43bf3902f8F00AF57cf5D44E8c",
|
|
1621
|
+
"block_number": 28853879,
|
|
1622
|
+
"transaction_hash": "0xccae9feadf0f925498fe85cde9f78f8c475abc14cc2a17e6eef66fb93a4903d0"
|
|
1654
1623
|
},
|
|
1655
1624
|
"WithdrawImplementation": {
|
|
1656
1625
|
"address": "0x679D43e1d304001538Bf083D421484fD67c00a45",
|