@across-protocol/contracts 4.0.1 → 4.0.3
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/dist/deploy/consts.d.ts +1 -1
- package/dist/deploy/consts.js +9 -13
- package/dist/deployments/deployments.json +24 -1
- package/dist/hardhat.config.js +17 -1
- package/dist/scripts/svm/fakeFillWithRandomDistribution.js +2 -2
- package/dist/scripts/svm/queryEvents.js +1 -1
- package/dist/scripts/svm/simpleDeposit.js +3 -3
- package/dist/scripts/svm/simpleFakeRelayerRepayment.js +1 -1
- package/dist/scripts/svm/simpleFill.js +19 -6
- package/dist/src/svm/assets/idl/svm_spoke.json +388 -388
- package/dist/src/svm/assets/svm_spoke.d.ts +388 -388
- package/dist/src/svm/clients/SvmSpoke/accounts/executeSlowRelayLeafParams.d.ts +31 -0
- package/dist/src/svm/clients/SvmSpoke/accounts/executeSlowRelayLeafParams.js +70 -0
- package/dist/src/svm/clients/SvmSpoke/accounts/fillRelayParams.d.ts +31 -0
- package/dist/src/svm/clients/SvmSpoke/accounts/fillRelayParams.js +67 -0
- package/dist/src/svm/clients/SvmSpoke/accounts/index.d.ts +3 -3
- package/dist/src/svm/clients/SvmSpoke/accounts/index.js +3 -3
- package/dist/src/svm/clients/SvmSpoke/accounts/requestSlowFillParams.d.ts +27 -0
- package/dist/src/svm/clients/SvmSpoke/accounts/requestSlowFillParams.js +66 -0
- package/dist/src/svm/clients/SvmSpoke/instructions/deposit.d.ts +123 -0
- package/dist/src/svm/clients/SvmSpoke/instructions/{depositV3.js → deposit.js} +23 -23
- package/dist/src/svm/clients/SvmSpoke/instructions/depositNow.d.ts +119 -0
- package/dist/src/svm/clients/SvmSpoke/instructions/{depositV3Now.js → depositNow.js} +23 -23
- package/dist/src/svm/clients/SvmSpoke/instructions/executeSlowRelayLeaf.d.ts +104 -0
- package/dist/src/svm/clients/SvmSpoke/instructions/{executeV3SlowRelayLeaf.js → executeSlowRelayLeaf.js} +26 -26
- package/dist/src/svm/clients/SvmSpoke/instructions/fillRelay.d.ts +104 -0
- package/dist/src/svm/clients/SvmSpoke/instructions/{fillV3Relay.js → fillRelay.js} +26 -26
- package/dist/src/svm/clients/SvmSpoke/instructions/index.d.ts +6 -6
- package/dist/src/svm/clients/SvmSpoke/instructions/index.js +6 -6
- package/dist/src/svm/clients/SvmSpoke/instructions/requestSlowFill.d.ts +76 -0
- package/dist/src/svm/clients/SvmSpoke/instructions/{requestV3SlowFill.js → requestSlowFill.js} +25 -25
- package/dist/src/svm/clients/SvmSpoke/instructions/unsafeDeposit.d.ts +127 -0
- package/dist/src/svm/clients/SvmSpoke/instructions/{unsafeDepositV3.js → unsafeDeposit.js} +23 -23
- package/dist/src/svm/clients/SvmSpoke/programs/svmSpoke.d.ts +23 -23
- package/dist/src/svm/clients/SvmSpoke/programs/svmSpoke.js +29 -29
- package/dist/src/svm/clients/SvmSpoke/types/{filledV3Relay.d.ts → filledRelay.d.ts} +8 -8
- package/dist/src/svm/clients/SvmSpoke/types/{filledV3Relay.js → filledRelay.js} +9 -9
- package/dist/src/svm/clients/SvmSpoke/types/{v3FundsDeposited.d.ts → fundsDeposited.d.ts} +5 -5
- package/dist/src/svm/clients/SvmSpoke/types/{v3FundsDeposited.js → fundsDeposited.js} +7 -7
- package/dist/src/svm/clients/SvmSpoke/types/index.d.ts +6 -6
- package/dist/src/svm/clients/SvmSpoke/types/index.js +6 -6
- package/dist/src/svm/clients/SvmSpoke/types/{v3RelayData.d.ts → relayData.d.ts} +5 -5
- package/dist/src/svm/clients/SvmSpoke/types/{v3RelayData.js → relayData.js} +7 -7
- package/dist/src/svm/clients/SvmSpoke/types/{v3RelayExecutionEventInfo.d.ts → relayExecutionEventInfo.d.ts} +5 -5
- package/dist/src/svm/clients/SvmSpoke/types/{v3RelayExecutionEventInfo.js → relayExecutionEventInfo.js} +7 -7
- package/dist/src/svm/clients/SvmSpoke/types/{requestedV3SlowFill.d.ts → requestedSlowFill.d.ts} +5 -5
- package/dist/src/svm/clients/SvmSpoke/types/{requestedV3SlowFill.js → requestedSlowFill.js} +7 -7
- package/dist/src/svm/clients/SvmSpoke/types/{v3SlowFill.d.ts → slowFill.d.ts} +8 -8
- package/dist/src/svm/clients/SvmSpoke/types/{v3SlowFill.js → slowFill.js} +9 -9
- package/dist/src/svm/web3-v1/instructionParamsUtils.d.ts +8 -8
- package/dist/src/svm/web3-v1/instructionParamsUtils.js +16 -16
- package/dist/src/types/svm.d.ts +6 -6
- package/dist/target/types/svm_spoke.d.ts +388 -388
- package/dist/tasks/enableL1TokenAcrossEcosystem.js +14 -10
- package/dist/test/svm/SvmSpoke.Deposit.js +48 -47
- package/dist/test/svm/SvmSpoke.Fill.AcrossPlus.js +2 -2
- package/dist/test/svm/SvmSpoke.Fill.js +28 -56
- package/dist/test/svm/SvmSpoke.SlowFill.AcrossPlus.js +13 -13
- package/dist/test/svm/SvmSpoke.SlowFill.js +40 -40
- package/dist/utils/constants.d.ts +1 -1
- package/dist/utils/constants.js +3 -1
- package/package.json +2 -2
- package/dist/src/svm/clients/SvmSpoke/accounts/executeV3SlowRelayLeafParams.d.ts +0 -31
- package/dist/src/svm/clients/SvmSpoke/accounts/executeV3SlowRelayLeafParams.js +0 -70
- package/dist/src/svm/clients/SvmSpoke/accounts/fillV3RelayParams.d.ts +0 -31
- package/dist/src/svm/clients/SvmSpoke/accounts/fillV3RelayParams.js +0 -67
- package/dist/src/svm/clients/SvmSpoke/accounts/requestV3SlowFillParams.d.ts +0 -27
- package/dist/src/svm/clients/SvmSpoke/accounts/requestV3SlowFillParams.js +0 -66
- package/dist/src/svm/clients/SvmSpoke/instructions/depositV3.d.ts +0 -123
- package/dist/src/svm/clients/SvmSpoke/instructions/depositV3Now.d.ts +0 -119
- package/dist/src/svm/clients/SvmSpoke/instructions/executeV3SlowRelayLeaf.d.ts +0 -104
- package/dist/src/svm/clients/SvmSpoke/instructions/fillV3Relay.d.ts +0 -104
- package/dist/src/svm/clients/SvmSpoke/instructions/requestV3SlowFill.d.ts +0 -76
- package/dist/src/svm/clients/SvmSpoke/instructions/unsafeDepositV3.d.ts +0 -127
|
@@ -716,7 +716,7 @@ export type SvmSpoke = {
|
|
|
716
716
|
"args": [];
|
|
717
717
|
},
|
|
718
718
|
{
|
|
719
|
-
"name": "
|
|
719
|
+
"name": "deposit";
|
|
720
720
|
"docs": [
|
|
721
721
|
"Request to bridge input_token to a target chain and receive output_token.",
|
|
722
722
|
"",
|
|
@@ -760,7 +760,7 @@ export type SvmSpoke = {
|
|
|
760
760
|
"- quote_timestamp: The HubPool timestamp that is used to determine the system fee paid by the depositor. This",
|
|
761
761
|
"must be set to some time between [currentTime - depositQuoteTimeBuffer, currentTime].",
|
|
762
762
|
"- fill_deadline: The deadline for the relayer to fill the deposit. After this destination chain timestamp, the",
|
|
763
|
-
"fill will revert on the destination chain. Must be set
|
|
763
|
+
"fill will revert on the destination chain. Must be set before currentTime + fillDeadlineBuffer.",
|
|
764
764
|
"- exclusivity_parameter: Sets the exclusivity deadline timestamp for the exclusiveRelayer to fill the deposit.",
|
|
765
765
|
"1. If 0, no exclusivity period.",
|
|
766
766
|
"2. If less than MAX_EXCLUSIVITY_PERIOD_SECONDS, adds this value to the current block timestamp.",
|
|
@@ -769,14 +769,14 @@ export type SvmSpoke = {
|
|
|
769
769
|
"If not empty, the recipient contract must implement handleV3AcrossMessage() or the fill will revert."
|
|
770
770
|
];
|
|
771
771
|
"discriminator": [
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
772
|
+
242,
|
|
773
|
+
35,
|
|
774
|
+
198,
|
|
775
|
+
137,
|
|
776
|
+
82,
|
|
777
|
+
225,
|
|
778
|
+
242,
|
|
779
|
+
182
|
|
780
780
|
];
|
|
781
781
|
"accounts": [
|
|
782
782
|
{
|
|
@@ -1042,20 +1042,20 @@ export type SvmSpoke = {
|
|
|
1042
1042
|
];
|
|
1043
1043
|
},
|
|
1044
1044
|
{
|
|
1045
|
-
"name": "
|
|
1045
|
+
"name": "depositNow";
|
|
1046
1046
|
"docs": [
|
|
1047
|
-
"Equivalent to
|
|
1047
|
+
"Equivalent to deposit except quote_timestamp is set to the current time.",
|
|
1048
1048
|
"The deposit `fill_deadline` is calculated as the current time plus `fill_deadline_offset`."
|
|
1049
1049
|
];
|
|
1050
1050
|
"discriminator": [
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1051
|
+
75,
|
|
1052
|
+
228,
|
|
1053
|
+
135,
|
|
1054
|
+
221,
|
|
1055
|
+
200,
|
|
1056
|
+
25,
|
|
1057
|
+
148,
|
|
1058
|
+
26
|
|
1059
1059
|
];
|
|
1060
1060
|
"accounts": [
|
|
1061
1061
|
{
|
|
@@ -1981,13 +1981,13 @@ export type SvmSpoke = {
|
|
|
1981
1981
|
"args": [];
|
|
1982
1982
|
},
|
|
1983
1983
|
{
|
|
1984
|
-
"name": "
|
|
1984
|
+
"name": "executeSlowRelayLeaf";
|
|
1985
1985
|
"docs": [
|
|
1986
1986
|
"Executes a slow relay leaf stored as part of a root bundle relayed by the HubPool.",
|
|
1987
1987
|
"",
|
|
1988
1988
|
"Executing a slow fill leaf is equivalent to filling the relayData, so this function cannot be used to",
|
|
1989
1989
|
"double fill a recipient. The relayData that is filled is included in the slowFillLeaf and is hashed",
|
|
1990
|
-
"like any other fill sent through
|
|
1990
|
+
"like any other fill sent through fillRelay(). There is no relayer credited with filling this relay since funds",
|
|
1991
1991
|
"are sent directly out of this program's vault.",
|
|
1992
1992
|
"",
|
|
1993
1993
|
"### Required Accounts:",
|
|
@@ -2009,7 +2009,7 @@ export type SvmSpoke = {
|
|
|
2009
2009
|
"- _relay_hash: The hash identifying the deposit to be filled. Used to identify the deposit to be filled.",
|
|
2010
2010
|
"- slow_fill_leaf: Contains all data necessary to uniquely verify the slow fill. This struct contains:",
|
|
2011
2011
|
"- relayData: Struct containing all the data needed to identify the original deposit to be slow filled. Same",
|
|
2012
|
-
"as the relay_data struct in
|
|
2012
|
+
"as the relay_data struct in fill_relay().",
|
|
2013
2013
|
"- chainId: Chain identifier where slow fill leaf should be executed. If this doesn't match this chain's",
|
|
2014
2014
|
"chainId, then this function will revert.",
|
|
2015
2015
|
"- updatedOutputAmount: Amount to be sent to recipient out of this contract's balance. Can be set differently",
|
|
@@ -2021,14 +2021,14 @@ export type SvmSpoke = {
|
|
|
2021
2021
|
"the caller must load them via the instruction_params account."
|
|
2022
2022
|
];
|
|
2023
2023
|
"discriminator": [
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2024
|
+
26,
|
|
2025
|
+
207,
|
|
2026
|
+
3,
|
|
2027
|
+
168,
|
|
2028
|
+
193,
|
|
2029
|
+
252,
|
|
2030
|
+
59,
|
|
2031
|
+
127
|
|
2032
2032
|
];
|
|
2033
2033
|
"accounts": [
|
|
2034
2034
|
{
|
|
@@ -2319,7 +2319,7 @@ export type SvmSpoke = {
|
|
|
2319
2319
|
"type": {
|
|
2320
2320
|
"option": {
|
|
2321
2321
|
"defined": {
|
|
2322
|
-
"name": "
|
|
2322
|
+
"name": "slowFill";
|
|
2323
2323
|
};
|
|
2324
2324
|
};
|
|
2325
2325
|
};
|
|
@@ -2346,14 +2346,14 @@ export type SvmSpoke = {
|
|
|
2346
2346
|
];
|
|
2347
2347
|
},
|
|
2348
2348
|
{
|
|
2349
|
-
"name": "
|
|
2349
|
+
"name": "fillRelay";
|
|
2350
2350
|
"docs": [
|
|
2351
2351
|
"Fulfill request to bridge cross chain by sending specified output tokens to recipient.",
|
|
2352
2352
|
"",
|
|
2353
2353
|
"Relayer & system fee is captured in the spread between input and output amounts. This fee accounts for tx costs,",
|
|
2354
2354
|
"relayer's capital opportunity cost, and a system fee. The relay_data hash uniquely identifies the deposit to",
|
|
2355
2355
|
"fill, ensuring relayers are refunded only for deposits matching the original hash from the origin SpokePool.",
|
|
2356
|
-
"This hash includes all parameters from
|
|
2356
|
+
"This hash includes all parameters from deposit() and must match the destination_chain_id. Note the relayer",
|
|
2357
2357
|
"creates an ATA in calling this method to store the fill_status. This should be closed once the deposit has",
|
|
2358
2358
|
"expired to let the relayer re-claim their rent. Cannot fill more than once. Partial fills are not supported.",
|
|
2359
2359
|
"",
|
|
@@ -2379,7 +2379,7 @@ export type SvmSpoke = {
|
|
|
2379
2379
|
"- _relay_hash: The hash identifying the deposit to be filled. Caller must pass this in. Computed as hash of",
|
|
2380
2380
|
"the flattened relay_data & destination_chain_id.",
|
|
2381
2381
|
"- relay_data: Struct containing all the data needed to identify the deposit to be filled. Should match",
|
|
2382
|
-
"all the same-named parameters emitted in the origin chain
|
|
2382
|
+
"all the same-named parameters emitted in the origin chain FundsDeposited event.",
|
|
2383
2383
|
"- depositor: The account credited with the deposit.",
|
|
2384
2384
|
"- recipient: The account receiving funds on this chain.",
|
|
2385
2385
|
"- input_token: The token pulled from the caller's account to initiate the deposit. The equivalent of this",
|
|
@@ -2395,7 +2395,7 @@ export type SvmSpoke = {
|
|
|
2395
2395
|
"- exclusivity_deadline: The deadline for the exclusive relayer to fill the deposit. After this timestamp,",
|
|
2396
2396
|
"anyone can fill this deposit.",
|
|
2397
2397
|
"- message: The message to send to the recipient if the recipient is a contract that implements a",
|
|
2398
|
-
"
|
|
2398
|
+
"handle_across_message() public function.",
|
|
2399
2399
|
"- repayment_chain_id: Chain of SpokePool where relayer wants to be refunded after the challenge window has",
|
|
2400
2400
|
"passed. Will receive input_amount of the equivalent token to input_token on the repayment chain.",
|
|
2401
2401
|
"- repayment_address: The address of the recipient on the repayment chain that they want to be refunded to.",
|
|
@@ -2403,14 +2403,14 @@ export type SvmSpoke = {
|
|
|
2403
2403
|
"is passed, the caller must load them via the instruction_params account."
|
|
2404
2404
|
];
|
|
2405
2405
|
"discriminator": [
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2406
|
+
100,
|
|
2407
|
+
84,
|
|
2408
|
+
222,
|
|
2409
|
+
90,
|
|
2410
|
+
106,
|
|
2411
|
+
209,
|
|
2412
|
+
58,
|
|
2413
|
+
222
|
|
2414
2414
|
];
|
|
2415
2415
|
"accounts": [
|
|
2416
2416
|
{
|
|
@@ -2621,7 +2621,7 @@ export type SvmSpoke = {
|
|
|
2621
2621
|
"type": {
|
|
2622
2622
|
"option": {
|
|
2623
2623
|
"defined": {
|
|
2624
|
-
"name": "
|
|
2624
|
+
"name": "relayData";
|
|
2625
2625
|
};
|
|
2626
2626
|
};
|
|
2627
2627
|
};
|
|
@@ -3489,7 +3489,7 @@ export type SvmSpoke = {
|
|
|
3489
3489
|
];
|
|
3490
3490
|
},
|
|
3491
3491
|
{
|
|
3492
|
-
"name": "
|
|
3492
|
+
"name": "requestSlowFill";
|
|
3493
3493
|
"docs": [
|
|
3494
3494
|
"Requests Across to send LP funds to this program to fulfill a slow fill.",
|
|
3495
3495
|
"",
|
|
@@ -3497,7 +3497,7 @@ export type SvmSpoke = {
|
|
|
3497
3497
|
"token via PoolRebalanceRoutes. Slow fills are created by inserting slow fill objects into a Merkle tree that is",
|
|
3498
3498
|
"included in the next HubPool \"root bundle\". Once the optimistic challenge window has passed, the HubPool will",
|
|
3499
3499
|
"relay the slow root to this chain via relayRootBundle(). Once the slow root is relayed, the slow fill can be",
|
|
3500
|
-
"executed by anyone who calls
|
|
3500
|
+
"executed by anyone who calls executeSlowRelayLeaf(). Cant request a slow fill if the fill deadline has",
|
|
3501
3501
|
"passed. Cant request a slow fill if the relay has already been filled or a slow fill has already been requested.",
|
|
3502
3502
|
"",
|
|
3503
3503
|
"### Required Accounts:",
|
|
@@ -3515,19 +3515,19 @@ export type SvmSpoke = {
|
|
|
3515
3515
|
"the flattened relay_data & destination_chain_id.",
|
|
3516
3516
|
"- relay_data: Struct containing all the data needed to identify the deposit that should be slow filled. If any",
|
|
3517
3517
|
"of the params are missing or different from the origin chain deposit, then Across will not include a slow",
|
|
3518
|
-
"fill for the intended deposit. See
|
|
3518
|
+
"fill for the intended deposit. See fill_relay & RelayData struct for more details.",
|
|
3519
3519
|
"Note: relay_data is optional parameter. If None for it is passed, the caller must load it via the",
|
|
3520
3520
|
"instruction_params account."
|
|
3521
3521
|
];
|
|
3522
3522
|
"discriminator": [
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3523
|
+
39,
|
|
3524
|
+
157,
|
|
3525
|
+
165,
|
|
3526
|
+
187,
|
|
3527
|
+
88,
|
|
3528
|
+
217,
|
|
3529
|
+
207,
|
|
3530
|
+
98
|
|
3531
3531
|
];
|
|
3532
3532
|
"accounts": [
|
|
3533
3533
|
{
|
|
@@ -3667,7 +3667,7 @@ export type SvmSpoke = {
|
|
|
3667
3667
|
"type": {
|
|
3668
3668
|
"option": {
|
|
3669
3669
|
"defined": {
|
|
3670
|
-
"name": "
|
|
3670
|
+
"name": "relayData";
|
|
3671
3671
|
};
|
|
3672
3672
|
};
|
|
3673
3673
|
};
|
|
@@ -4121,9 +4121,9 @@ export type SvmSpoke = {
|
|
|
4121
4121
|
];
|
|
4122
4122
|
},
|
|
4123
4123
|
{
|
|
4124
|
-
"name": "
|
|
4124
|
+
"name": "unsafeDeposit";
|
|
4125
4125
|
"docs": [
|
|
4126
|
-
"Equivalent to
|
|
4126
|
+
"Equivalent to deposit, except that it doesn't use the global `number_of_deposits` counter as the deposit",
|
|
4127
4127
|
"nonce. Instead, it allows the caller to pass a `deposit_nonce`. This function is designed for anyone who",
|
|
4128
4128
|
"wants to pre-compute their resultant deposit ID, which can be useful for filling a deposit faster and",
|
|
4129
4129
|
"avoiding the risk of a deposit ID unexpectedly changing due to another deposit front-running this one and",
|
|
@@ -4131,14 +4131,14 @@ export type SvmSpoke = {
|
|
|
4131
4131
|
"deterministic for the depositor. The computed `depositID` is the keccak256 hash of [signer, depositor, deposit_nonce]."
|
|
4132
4132
|
];
|
|
4133
4133
|
"discriminator": [
|
|
4134
|
-
|
|
4135
|
-
|
|
4136
|
-
|
|
4137
|
-
|
|
4138
|
-
|
|
4139
|
-
|
|
4140
|
-
|
|
4141
|
-
|
|
4134
|
+
196,
|
|
4135
|
+
187,
|
|
4136
|
+
166,
|
|
4137
|
+
179,
|
|
4138
|
+
3,
|
|
4139
|
+
146,
|
|
4140
|
+
150,
|
|
4141
|
+
246
|
|
4142
4142
|
];
|
|
4143
4143
|
"accounts": [
|
|
4144
4144
|
{
|
|
@@ -4519,16 +4519,29 @@ export type SvmSpoke = {
|
|
|
4519
4519
|
];
|
|
4520
4520
|
},
|
|
4521
4521
|
{
|
|
4522
|
-
"name": "
|
|
4522
|
+
"name": "executeSlowRelayLeafParams";
|
|
4523
4523
|
"discriminator": [
|
|
4524
|
-
|
|
4525
|
-
|
|
4526
|
-
|
|
4527
|
-
|
|
4528
|
-
|
|
4529
|
-
|
|
4530
|
-
|
|
4531
|
-
|
|
4524
|
+
135,
|
|
4525
|
+
208,
|
|
4526
|
+
119,
|
|
4527
|
+
251,
|
|
4528
|
+
14,
|
|
4529
|
+
222,
|
|
4530
|
+
66,
|
|
4531
|
+
155
|
|
4532
|
+
];
|
|
4533
|
+
},
|
|
4534
|
+
{
|
|
4535
|
+
"name": "fillRelayParams";
|
|
4536
|
+
"discriminator": [
|
|
4537
|
+
50,
|
|
4538
|
+
243,
|
|
4539
|
+
51,
|
|
4540
|
+
185,
|
|
4541
|
+
89,
|
|
4542
|
+
60,
|
|
4543
|
+
43,
|
|
4544
|
+
202
|
|
4532
4545
|
];
|
|
4533
4546
|
},
|
|
4534
4547
|
{
|
|
@@ -4545,29 +4558,16 @@ export type SvmSpoke = {
|
|
|
4545
4558
|
];
|
|
4546
4559
|
},
|
|
4547
4560
|
{
|
|
4548
|
-
"name": "
|
|
4549
|
-
"discriminator": [
|
|
4550
|
-
45,
|
|
4551
|
-
184,
|
|
4552
|
-
9,
|
|
4553
|
-
102,
|
|
4554
|
-
46,
|
|
4555
|
-
87,
|
|
4556
|
-
53,
|
|
4557
|
-
8
|
|
4558
|
-
];
|
|
4559
|
-
},
|
|
4560
|
-
{
|
|
4561
|
-
"name": "requestV3SlowFillParams";
|
|
4561
|
+
"name": "requestSlowFillParams";
|
|
4562
4562
|
"discriminator": [
|
|
4563
|
-
|
|
4564
|
-
|
|
4565
|
-
|
|
4566
|
-
|
|
4567
|
-
|
|
4568
|
-
|
|
4569
|
-
|
|
4570
|
-
|
|
4563
|
+
5,
|
|
4564
|
+
54,
|
|
4565
|
+
214,
|
|
4566
|
+
89,
|
|
4567
|
+
197,
|
|
4568
|
+
37,
|
|
4569
|
+
118,
|
|
4570
|
+
28
|
|
4571
4571
|
];
|
|
4572
4572
|
},
|
|
4573
4573
|
{
|
|
@@ -4690,16 +4690,29 @@ export type SvmSpoke = {
|
|
|
4690
4690
|
];
|
|
4691
4691
|
},
|
|
4692
4692
|
{
|
|
4693
|
-
"name": "
|
|
4693
|
+
"name": "filledRelay";
|
|
4694
4694
|
"discriminator": [
|
|
4695
|
-
|
|
4696
|
-
|
|
4697
|
-
|
|
4698
|
-
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4702
|
-
|
|
4695
|
+
25,
|
|
4696
|
+
58,
|
|
4697
|
+
182,
|
|
4698
|
+
0,
|
|
4699
|
+
50,
|
|
4700
|
+
99,
|
|
4701
|
+
160,
|
|
4702
|
+
117
|
|
4703
|
+
];
|
|
4704
|
+
},
|
|
4705
|
+
{
|
|
4706
|
+
"name": "fundsDeposited";
|
|
4707
|
+
"discriminator": [
|
|
4708
|
+
157,
|
|
4709
|
+
209,
|
|
4710
|
+
100,
|
|
4711
|
+
95,
|
|
4712
|
+
59,
|
|
4713
|
+
100,
|
|
4714
|
+
3,
|
|
4715
|
+
68
|
|
4703
4716
|
];
|
|
4704
4717
|
},
|
|
4705
4718
|
{
|
|
@@ -4742,16 +4755,16 @@ export type SvmSpoke = {
|
|
|
4742
4755
|
];
|
|
4743
4756
|
},
|
|
4744
4757
|
{
|
|
4745
|
-
"name": "
|
|
4758
|
+
"name": "requestedSlowFill";
|
|
4746
4759
|
"discriminator": [
|
|
4747
|
-
|
|
4760
|
+
221,
|
|
4761
|
+
123,
|
|
4762
|
+
11,
|
|
4763
|
+
14,
|
|
4748
4764
|
71,
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
|
|
4752
|
-
222,
|
|
4753
|
-
254,
|
|
4754
|
-
129
|
|
4765
|
+
37,
|
|
4766
|
+
178,
|
|
4767
|
+
167
|
|
4755
4768
|
];
|
|
4756
4769
|
},
|
|
4757
4770
|
{
|
|
@@ -4792,19 +4805,6 @@ export type SvmSpoke = {
|
|
|
4792
4805
|
21,
|
|
4793
4806
|
117
|
|
4794
4807
|
];
|
|
4795
|
-
},
|
|
4796
|
-
{
|
|
4797
|
-
"name": "v3FundsDeposited";
|
|
4798
|
-
"discriminator": [
|
|
4799
|
-
224,
|
|
4800
|
-
136,
|
|
4801
|
-
127,
|
|
4802
|
-
43,
|
|
4803
|
-
200,
|
|
4804
|
-
41,
|
|
4805
|
-
47,
|
|
4806
|
-
142
|
|
4807
|
-
];
|
|
4808
4808
|
}
|
|
4809
4809
|
];
|
|
4810
4810
|
"errors": [
|
|
@@ -5011,7 +5011,7 @@ export type SvmSpoke = {
|
|
|
5011
5011
|
};
|
|
5012
5012
|
},
|
|
5013
5013
|
{
|
|
5014
|
-
"name": "
|
|
5014
|
+
"name": "executeSlowRelayLeafParams";
|
|
5015
5015
|
"type": {
|
|
5016
5016
|
"kind": "struct";
|
|
5017
5017
|
"fields": [
|
|
@@ -5019,7 +5019,7 @@ export type SvmSpoke = {
|
|
|
5019
5019
|
"name": "slowFillLeaf";
|
|
5020
5020
|
"type": {
|
|
5021
5021
|
"defined": {
|
|
5022
|
-
"name": "
|
|
5022
|
+
"name": "slowFill";
|
|
5023
5023
|
};
|
|
5024
5024
|
};
|
|
5025
5025
|
},
|
|
@@ -5089,6 +5089,30 @@ export type SvmSpoke = {
|
|
|
5089
5089
|
];
|
|
5090
5090
|
};
|
|
5091
5091
|
},
|
|
5092
|
+
{
|
|
5093
|
+
"name": "fillRelayParams";
|
|
5094
|
+
"type": {
|
|
5095
|
+
"kind": "struct";
|
|
5096
|
+
"fields": [
|
|
5097
|
+
{
|
|
5098
|
+
"name": "relayData";
|
|
5099
|
+
"type": {
|
|
5100
|
+
"defined": {
|
|
5101
|
+
"name": "relayData";
|
|
5102
|
+
};
|
|
5103
|
+
};
|
|
5104
|
+
},
|
|
5105
|
+
{
|
|
5106
|
+
"name": "repaymentChainId";
|
|
5107
|
+
"type": "u64";
|
|
5108
|
+
},
|
|
5109
|
+
{
|
|
5110
|
+
"name": "repaymentAddress";
|
|
5111
|
+
"type": "pubkey";
|
|
5112
|
+
}
|
|
5113
|
+
];
|
|
5114
|
+
};
|
|
5115
|
+
},
|
|
5092
5116
|
{
|
|
5093
5117
|
"name": "fillStatus";
|
|
5094
5118
|
"type": {
|
|
@@ -5148,31 +5172,7 @@ export type SvmSpoke = {
|
|
|
5148
5172
|
};
|
|
5149
5173
|
},
|
|
5150
5174
|
{
|
|
5151
|
-
"name": "
|
|
5152
|
-
"type": {
|
|
5153
|
-
"kind": "struct";
|
|
5154
|
-
"fields": [
|
|
5155
|
-
{
|
|
5156
|
-
"name": "relayData";
|
|
5157
|
-
"type": {
|
|
5158
|
-
"defined": {
|
|
5159
|
-
"name": "v3RelayData";
|
|
5160
|
-
};
|
|
5161
|
-
};
|
|
5162
|
-
},
|
|
5163
|
-
{
|
|
5164
|
-
"name": "repaymentChainId";
|
|
5165
|
-
"type": "u64";
|
|
5166
|
-
},
|
|
5167
|
-
{
|
|
5168
|
-
"name": "repaymentAddress";
|
|
5169
|
-
"type": "pubkey";
|
|
5170
|
-
}
|
|
5171
|
-
];
|
|
5172
|
-
};
|
|
5173
|
-
},
|
|
5174
|
-
{
|
|
5175
|
-
"name": "filledV3Relay";
|
|
5175
|
+
"name": "filledRelay";
|
|
5176
5176
|
"type": {
|
|
5177
5177
|
"kind": "struct";
|
|
5178
5178
|
"fields": [
|
|
@@ -5246,7 +5246,7 @@ export type SvmSpoke = {
|
|
|
5246
5246
|
"name": "relayExecutionInfo";
|
|
5247
5247
|
"type": {
|
|
5248
5248
|
"defined": {
|
|
5249
|
-
"name": "
|
|
5249
|
+
"name": "relayExecutionEventInfo";
|
|
5250
5250
|
};
|
|
5251
5251
|
};
|
|
5252
5252
|
}
|
|
@@ -5254,64 +5254,32 @@ export type SvmSpoke = {
|
|
|
5254
5254
|
};
|
|
5255
5255
|
},
|
|
5256
5256
|
{
|
|
5257
|
-
"name": "
|
|
5257
|
+
"name": "fundsDeposited";
|
|
5258
5258
|
"type": {
|
|
5259
5259
|
"kind": "struct";
|
|
5260
5260
|
"fields": [
|
|
5261
5261
|
{
|
|
5262
|
-
"name": "
|
|
5263
|
-
"type": "
|
|
5262
|
+
"name": "inputToken";
|
|
5263
|
+
"type": "pubkey";
|
|
5264
5264
|
},
|
|
5265
5265
|
{
|
|
5266
|
-
"name": "
|
|
5266
|
+
"name": "outputToken";
|
|
5267
5267
|
"type": "pubkey";
|
|
5268
5268
|
},
|
|
5269
5269
|
{
|
|
5270
|
-
"name": "
|
|
5271
|
-
"type": "
|
|
5270
|
+
"name": "inputAmount";
|
|
5271
|
+
"type": "u64";
|
|
5272
5272
|
},
|
|
5273
5273
|
{
|
|
5274
|
-
"name": "
|
|
5275
|
-
"type": "
|
|
5276
|
-
}
|
|
5277
|
-
];
|
|
5278
|
-
};
|
|
5279
|
-
},
|
|
5280
|
-
{
|
|
5281
|
-
"name": "pausedDeposits";
|
|
5282
|
-
"type": {
|
|
5283
|
-
"kind": "struct";
|
|
5284
|
-
"fields": [
|
|
5285
|
-
{
|
|
5286
|
-
"name": "isPaused";
|
|
5287
|
-
"type": "bool";
|
|
5288
|
-
}
|
|
5289
|
-
];
|
|
5290
|
-
};
|
|
5291
|
-
},
|
|
5292
|
-
{
|
|
5293
|
-
"name": "pausedFills";
|
|
5294
|
-
"type": {
|
|
5295
|
-
"kind": "struct";
|
|
5296
|
-
"fields": [
|
|
5297
|
-
{
|
|
5298
|
-
"name": "isPaused";
|
|
5299
|
-
"type": "bool";
|
|
5300
|
-
}
|
|
5301
|
-
];
|
|
5302
|
-
};
|
|
5303
|
-
},
|
|
5304
|
-
{
|
|
5305
|
-
"name": "relayedRootBundle";
|
|
5306
|
-
"type": {
|
|
5307
|
-
"kind": "struct";
|
|
5308
|
-
"fields": [
|
|
5274
|
+
"name": "outputAmount";
|
|
5275
|
+
"type": "u64";
|
|
5276
|
+
},
|
|
5309
5277
|
{
|
|
5310
|
-
"name": "
|
|
5311
|
-
"type": "
|
|
5278
|
+
"name": "destinationChainId";
|
|
5279
|
+
"type": "u64";
|
|
5312
5280
|
},
|
|
5313
5281
|
{
|
|
5314
|
-
"name": "
|
|
5282
|
+
"name": "depositId";
|
|
5315
5283
|
"type": {
|
|
5316
5284
|
"array": [
|
|
5317
5285
|
"u8",
|
|
@@ -5320,8 +5288,199 @@ export type SvmSpoke = {
|
|
|
5320
5288
|
};
|
|
5321
5289
|
},
|
|
5322
5290
|
{
|
|
5323
|
-
"name": "
|
|
5324
|
-
"type":
|
|
5291
|
+
"name": "quoteTimestamp";
|
|
5292
|
+
"type": "u32";
|
|
5293
|
+
},
|
|
5294
|
+
{
|
|
5295
|
+
"name": "fillDeadline";
|
|
5296
|
+
"type": "u32";
|
|
5297
|
+
},
|
|
5298
|
+
{
|
|
5299
|
+
"name": "exclusivityDeadline";
|
|
5300
|
+
"type": "u32";
|
|
5301
|
+
},
|
|
5302
|
+
{
|
|
5303
|
+
"name": "depositor";
|
|
5304
|
+
"type": "pubkey";
|
|
5305
|
+
},
|
|
5306
|
+
{
|
|
5307
|
+
"name": "recipient";
|
|
5308
|
+
"type": "pubkey";
|
|
5309
|
+
},
|
|
5310
|
+
{
|
|
5311
|
+
"name": "exclusiveRelayer";
|
|
5312
|
+
"type": "pubkey";
|
|
5313
|
+
},
|
|
5314
|
+
{
|
|
5315
|
+
"name": "message";
|
|
5316
|
+
"type": "bytes";
|
|
5317
|
+
}
|
|
5318
|
+
];
|
|
5319
|
+
};
|
|
5320
|
+
},
|
|
5321
|
+
{
|
|
5322
|
+
"name": "handleReceiveMessageParams";
|
|
5323
|
+
"type": {
|
|
5324
|
+
"kind": "struct";
|
|
5325
|
+
"fields": [
|
|
5326
|
+
{
|
|
5327
|
+
"name": "remoteDomain";
|
|
5328
|
+
"type": "u32";
|
|
5329
|
+
},
|
|
5330
|
+
{
|
|
5331
|
+
"name": "sender";
|
|
5332
|
+
"type": "pubkey";
|
|
5333
|
+
},
|
|
5334
|
+
{
|
|
5335
|
+
"name": "messageBody";
|
|
5336
|
+
"type": "bytes";
|
|
5337
|
+
},
|
|
5338
|
+
{
|
|
5339
|
+
"name": "authorityBump";
|
|
5340
|
+
"type": "u8";
|
|
5341
|
+
}
|
|
5342
|
+
];
|
|
5343
|
+
};
|
|
5344
|
+
},
|
|
5345
|
+
{
|
|
5346
|
+
"name": "pausedDeposits";
|
|
5347
|
+
"type": {
|
|
5348
|
+
"kind": "struct";
|
|
5349
|
+
"fields": [
|
|
5350
|
+
{
|
|
5351
|
+
"name": "isPaused";
|
|
5352
|
+
"type": "bool";
|
|
5353
|
+
}
|
|
5354
|
+
];
|
|
5355
|
+
};
|
|
5356
|
+
},
|
|
5357
|
+
{
|
|
5358
|
+
"name": "pausedFills";
|
|
5359
|
+
"type": {
|
|
5360
|
+
"kind": "struct";
|
|
5361
|
+
"fields": [
|
|
5362
|
+
{
|
|
5363
|
+
"name": "isPaused";
|
|
5364
|
+
"type": "bool";
|
|
5365
|
+
}
|
|
5366
|
+
];
|
|
5367
|
+
};
|
|
5368
|
+
},
|
|
5369
|
+
{
|
|
5370
|
+
"name": "relayData";
|
|
5371
|
+
"type": {
|
|
5372
|
+
"kind": "struct";
|
|
5373
|
+
"fields": [
|
|
5374
|
+
{
|
|
5375
|
+
"name": "depositor";
|
|
5376
|
+
"type": "pubkey";
|
|
5377
|
+
},
|
|
5378
|
+
{
|
|
5379
|
+
"name": "recipient";
|
|
5380
|
+
"type": "pubkey";
|
|
5381
|
+
},
|
|
5382
|
+
{
|
|
5383
|
+
"name": "exclusiveRelayer";
|
|
5384
|
+
"type": "pubkey";
|
|
5385
|
+
},
|
|
5386
|
+
{
|
|
5387
|
+
"name": "inputToken";
|
|
5388
|
+
"type": "pubkey";
|
|
5389
|
+
},
|
|
5390
|
+
{
|
|
5391
|
+
"name": "outputToken";
|
|
5392
|
+
"type": "pubkey";
|
|
5393
|
+
},
|
|
5394
|
+
{
|
|
5395
|
+
"name": "inputAmount";
|
|
5396
|
+
"type": "u64";
|
|
5397
|
+
},
|
|
5398
|
+
{
|
|
5399
|
+
"name": "outputAmount";
|
|
5400
|
+
"type": "u64";
|
|
5401
|
+
},
|
|
5402
|
+
{
|
|
5403
|
+
"name": "originChainId";
|
|
5404
|
+
"type": "u64";
|
|
5405
|
+
},
|
|
5406
|
+
{
|
|
5407
|
+
"name": "depositId";
|
|
5408
|
+
"type": {
|
|
5409
|
+
"array": [
|
|
5410
|
+
"u8",
|
|
5411
|
+
32
|
|
5412
|
+
];
|
|
5413
|
+
};
|
|
5414
|
+
},
|
|
5415
|
+
{
|
|
5416
|
+
"name": "fillDeadline";
|
|
5417
|
+
"type": "u32";
|
|
5418
|
+
},
|
|
5419
|
+
{
|
|
5420
|
+
"name": "exclusivityDeadline";
|
|
5421
|
+
"type": "u32";
|
|
5422
|
+
},
|
|
5423
|
+
{
|
|
5424
|
+
"name": "message";
|
|
5425
|
+
"type": "bytes";
|
|
5426
|
+
}
|
|
5427
|
+
];
|
|
5428
|
+
};
|
|
5429
|
+
},
|
|
5430
|
+
{
|
|
5431
|
+
"name": "relayExecutionEventInfo";
|
|
5432
|
+
"type": {
|
|
5433
|
+
"kind": "struct";
|
|
5434
|
+
"fields": [
|
|
5435
|
+
{
|
|
5436
|
+
"name": "updatedRecipient";
|
|
5437
|
+
"type": "pubkey";
|
|
5438
|
+
},
|
|
5439
|
+
{
|
|
5440
|
+
"name": "updatedMessageHash";
|
|
5441
|
+
"type": {
|
|
5442
|
+
"array": [
|
|
5443
|
+
"u8",
|
|
5444
|
+
32
|
|
5445
|
+
];
|
|
5446
|
+
};
|
|
5447
|
+
},
|
|
5448
|
+
{
|
|
5449
|
+
"name": "updatedOutputAmount";
|
|
5450
|
+
"type": "u64";
|
|
5451
|
+
},
|
|
5452
|
+
{
|
|
5453
|
+
"name": "fillType";
|
|
5454
|
+
"type": {
|
|
5455
|
+
"defined": {
|
|
5456
|
+
"name": "fillType";
|
|
5457
|
+
};
|
|
5458
|
+
};
|
|
5459
|
+
}
|
|
5460
|
+
];
|
|
5461
|
+
};
|
|
5462
|
+
},
|
|
5463
|
+
{
|
|
5464
|
+
"name": "relayedRootBundle";
|
|
5465
|
+
"type": {
|
|
5466
|
+
"kind": "struct";
|
|
5467
|
+
"fields": [
|
|
5468
|
+
{
|
|
5469
|
+
"name": "rootBundleId";
|
|
5470
|
+
"type": "u32";
|
|
5471
|
+
},
|
|
5472
|
+
{
|
|
5473
|
+
"name": "relayerRefundRoot";
|
|
5474
|
+
"type": {
|
|
5475
|
+
"array": [
|
|
5476
|
+
"u8",
|
|
5477
|
+
32
|
|
5478
|
+
];
|
|
5479
|
+
};
|
|
5480
|
+
},
|
|
5481
|
+
{
|
|
5482
|
+
"name": "slowRelayRoot";
|
|
5483
|
+
"type": {
|
|
5325
5484
|
"array": [
|
|
5326
5485
|
"u8",
|
|
5327
5486
|
32
|
|
@@ -5368,7 +5527,7 @@ export type SvmSpoke = {
|
|
|
5368
5527
|
};
|
|
5369
5528
|
},
|
|
5370
5529
|
{
|
|
5371
|
-
"name": "
|
|
5530
|
+
"name": "requestSlowFillParams";
|
|
5372
5531
|
"type": {
|
|
5373
5532
|
"kind": "struct";
|
|
5374
5533
|
"fields": [
|
|
@@ -5376,7 +5535,7 @@ export type SvmSpoke = {
|
|
|
5376
5535
|
"name": "relayData";
|
|
5377
5536
|
"type": {
|
|
5378
5537
|
"defined": {
|
|
5379
|
-
"name": "
|
|
5538
|
+
"name": "relayData";
|
|
5380
5539
|
};
|
|
5381
5540
|
};
|
|
5382
5541
|
}
|
|
@@ -5384,7 +5543,7 @@ export type SvmSpoke = {
|
|
|
5384
5543
|
};
|
|
5385
5544
|
},
|
|
5386
5545
|
{
|
|
5387
|
-
"name": "
|
|
5546
|
+
"name": "requestedSlowFill";
|
|
5388
5547
|
"type": {
|
|
5389
5548
|
"kind": "struct";
|
|
5390
5549
|
"fields": [
|
|
@@ -5503,6 +5662,30 @@ export type SvmSpoke = {
|
|
|
5503
5662
|
];
|
|
5504
5663
|
};
|
|
5505
5664
|
},
|
|
5665
|
+
{
|
|
5666
|
+
"name": "slowFill";
|
|
5667
|
+
"type": {
|
|
5668
|
+
"kind": "struct";
|
|
5669
|
+
"fields": [
|
|
5670
|
+
{
|
|
5671
|
+
"name": "relayData";
|
|
5672
|
+
"type": {
|
|
5673
|
+
"defined": {
|
|
5674
|
+
"name": "relayData";
|
|
5675
|
+
};
|
|
5676
|
+
};
|
|
5677
|
+
},
|
|
5678
|
+
{
|
|
5679
|
+
"name": "chainId";
|
|
5680
|
+
"type": "u64";
|
|
5681
|
+
},
|
|
5682
|
+
{
|
|
5683
|
+
"name": "updatedOutputAmount";
|
|
5684
|
+
"type": "u64";
|
|
5685
|
+
}
|
|
5686
|
+
];
|
|
5687
|
+
};
|
|
5688
|
+
},
|
|
5506
5689
|
{
|
|
5507
5690
|
"name": "state";
|
|
5508
5691
|
"type": {
|
|
@@ -5610,189 +5793,6 @@ export type SvmSpoke = {
|
|
|
5610
5793
|
}
|
|
5611
5794
|
];
|
|
5612
5795
|
};
|
|
5613
|
-
},
|
|
5614
|
-
{
|
|
5615
|
-
"name": "v3FundsDeposited";
|
|
5616
|
-
"type": {
|
|
5617
|
-
"kind": "struct";
|
|
5618
|
-
"fields": [
|
|
5619
|
-
{
|
|
5620
|
-
"name": "inputToken";
|
|
5621
|
-
"type": "pubkey";
|
|
5622
|
-
},
|
|
5623
|
-
{
|
|
5624
|
-
"name": "outputToken";
|
|
5625
|
-
"type": "pubkey";
|
|
5626
|
-
},
|
|
5627
|
-
{
|
|
5628
|
-
"name": "inputAmount";
|
|
5629
|
-
"type": "u64";
|
|
5630
|
-
},
|
|
5631
|
-
{
|
|
5632
|
-
"name": "outputAmount";
|
|
5633
|
-
"type": "u64";
|
|
5634
|
-
},
|
|
5635
|
-
{
|
|
5636
|
-
"name": "destinationChainId";
|
|
5637
|
-
"type": "u64";
|
|
5638
|
-
},
|
|
5639
|
-
{
|
|
5640
|
-
"name": "depositId";
|
|
5641
|
-
"type": {
|
|
5642
|
-
"array": [
|
|
5643
|
-
"u8",
|
|
5644
|
-
32
|
|
5645
|
-
];
|
|
5646
|
-
};
|
|
5647
|
-
},
|
|
5648
|
-
{
|
|
5649
|
-
"name": "quoteTimestamp";
|
|
5650
|
-
"type": "u32";
|
|
5651
|
-
},
|
|
5652
|
-
{
|
|
5653
|
-
"name": "fillDeadline";
|
|
5654
|
-
"type": "u32";
|
|
5655
|
-
},
|
|
5656
|
-
{
|
|
5657
|
-
"name": "exclusivityDeadline";
|
|
5658
|
-
"type": "u32";
|
|
5659
|
-
},
|
|
5660
|
-
{
|
|
5661
|
-
"name": "depositor";
|
|
5662
|
-
"type": "pubkey";
|
|
5663
|
-
},
|
|
5664
|
-
{
|
|
5665
|
-
"name": "recipient";
|
|
5666
|
-
"type": "pubkey";
|
|
5667
|
-
},
|
|
5668
|
-
{
|
|
5669
|
-
"name": "exclusiveRelayer";
|
|
5670
|
-
"type": "pubkey";
|
|
5671
|
-
},
|
|
5672
|
-
{
|
|
5673
|
-
"name": "message";
|
|
5674
|
-
"type": "bytes";
|
|
5675
|
-
}
|
|
5676
|
-
];
|
|
5677
|
-
};
|
|
5678
|
-
},
|
|
5679
|
-
{
|
|
5680
|
-
"name": "v3RelayData";
|
|
5681
|
-
"type": {
|
|
5682
|
-
"kind": "struct";
|
|
5683
|
-
"fields": [
|
|
5684
|
-
{
|
|
5685
|
-
"name": "depositor";
|
|
5686
|
-
"type": "pubkey";
|
|
5687
|
-
},
|
|
5688
|
-
{
|
|
5689
|
-
"name": "recipient";
|
|
5690
|
-
"type": "pubkey";
|
|
5691
|
-
},
|
|
5692
|
-
{
|
|
5693
|
-
"name": "exclusiveRelayer";
|
|
5694
|
-
"type": "pubkey";
|
|
5695
|
-
},
|
|
5696
|
-
{
|
|
5697
|
-
"name": "inputToken";
|
|
5698
|
-
"type": "pubkey";
|
|
5699
|
-
},
|
|
5700
|
-
{
|
|
5701
|
-
"name": "outputToken";
|
|
5702
|
-
"type": "pubkey";
|
|
5703
|
-
},
|
|
5704
|
-
{
|
|
5705
|
-
"name": "inputAmount";
|
|
5706
|
-
"type": "u64";
|
|
5707
|
-
},
|
|
5708
|
-
{
|
|
5709
|
-
"name": "outputAmount";
|
|
5710
|
-
"type": "u64";
|
|
5711
|
-
},
|
|
5712
|
-
{
|
|
5713
|
-
"name": "originChainId";
|
|
5714
|
-
"type": "u64";
|
|
5715
|
-
},
|
|
5716
|
-
{
|
|
5717
|
-
"name": "depositId";
|
|
5718
|
-
"type": {
|
|
5719
|
-
"array": [
|
|
5720
|
-
"u8",
|
|
5721
|
-
32
|
|
5722
|
-
];
|
|
5723
|
-
};
|
|
5724
|
-
},
|
|
5725
|
-
{
|
|
5726
|
-
"name": "fillDeadline";
|
|
5727
|
-
"type": "u32";
|
|
5728
|
-
},
|
|
5729
|
-
{
|
|
5730
|
-
"name": "exclusivityDeadline";
|
|
5731
|
-
"type": "u32";
|
|
5732
|
-
},
|
|
5733
|
-
{
|
|
5734
|
-
"name": "message";
|
|
5735
|
-
"type": "bytes";
|
|
5736
|
-
}
|
|
5737
|
-
];
|
|
5738
|
-
};
|
|
5739
|
-
},
|
|
5740
|
-
{
|
|
5741
|
-
"name": "v3RelayExecutionEventInfo";
|
|
5742
|
-
"type": {
|
|
5743
|
-
"kind": "struct";
|
|
5744
|
-
"fields": [
|
|
5745
|
-
{
|
|
5746
|
-
"name": "updatedRecipient";
|
|
5747
|
-
"type": "pubkey";
|
|
5748
|
-
},
|
|
5749
|
-
{
|
|
5750
|
-
"name": "updatedMessageHash";
|
|
5751
|
-
"type": {
|
|
5752
|
-
"array": [
|
|
5753
|
-
"u8",
|
|
5754
|
-
32
|
|
5755
|
-
];
|
|
5756
|
-
};
|
|
5757
|
-
},
|
|
5758
|
-
{
|
|
5759
|
-
"name": "updatedOutputAmount";
|
|
5760
|
-
"type": "u64";
|
|
5761
|
-
},
|
|
5762
|
-
{
|
|
5763
|
-
"name": "fillType";
|
|
5764
|
-
"type": {
|
|
5765
|
-
"defined": {
|
|
5766
|
-
"name": "fillType";
|
|
5767
|
-
};
|
|
5768
|
-
};
|
|
5769
|
-
}
|
|
5770
|
-
];
|
|
5771
|
-
};
|
|
5772
|
-
},
|
|
5773
|
-
{
|
|
5774
|
-
"name": "v3SlowFill";
|
|
5775
|
-
"type": {
|
|
5776
|
-
"kind": "struct";
|
|
5777
|
-
"fields": [
|
|
5778
|
-
{
|
|
5779
|
-
"name": "relayData";
|
|
5780
|
-
"type": {
|
|
5781
|
-
"defined": {
|
|
5782
|
-
"name": "v3RelayData";
|
|
5783
|
-
};
|
|
5784
|
-
};
|
|
5785
|
-
},
|
|
5786
|
-
{
|
|
5787
|
-
"name": "chainId";
|
|
5788
|
-
"type": "u64";
|
|
5789
|
-
},
|
|
5790
|
-
{
|
|
5791
|
-
"name": "updatedOutputAmount";
|
|
5792
|
-
"type": "u64";
|
|
5793
|
-
}
|
|
5794
|
-
];
|
|
5795
|
-
};
|
|
5796
5796
|
}
|
|
5797
5797
|
];
|
|
5798
5798
|
};
|