@relay-protocol/settlement-abis 2.0.11 → 2.0.12
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/index.d.mts +355 -144
- package/dist/index.d.ts +355 -144
- package/dist/index.js +354 -144
- package/dist/index.mjs +354 -144
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9742,10 +9742,10 @@ var PoolDrawResolver = [
|
|
|
9742
9742
|
name: "DrawLegExecuted",
|
|
9743
9743
|
inputs: [
|
|
9744
9744
|
{
|
|
9745
|
-
name: "
|
|
9746
|
-
type: "
|
|
9745
|
+
name: "orderAddress",
|
|
9746
|
+
type: "address",
|
|
9747
9747
|
indexed: true,
|
|
9748
|
-
internalType: "
|
|
9748
|
+
internalType: "address"
|
|
9749
9749
|
},
|
|
9750
9750
|
{
|
|
9751
9751
|
name: "pool",
|
|
@@ -9759,6 +9759,12 @@ var PoolDrawResolver = [
|
|
|
9759
9759
|
indexed: true,
|
|
9760
9760
|
internalType: "address"
|
|
9761
9761
|
},
|
|
9762
|
+
{
|
|
9763
|
+
name: "requestHash",
|
|
9764
|
+
type: "bytes32",
|
|
9765
|
+
indexed: false,
|
|
9766
|
+
internalType: "bytes32"
|
|
9767
|
+
},
|
|
9762
9768
|
{
|
|
9763
9769
|
name: "kind",
|
|
9764
9770
|
type: "uint8",
|
|
@@ -10188,10 +10194,10 @@ var PoolResolverBase = [
|
|
|
10188
10194
|
name: "DrawLegExecuted",
|
|
10189
10195
|
inputs: [
|
|
10190
10196
|
{
|
|
10191
|
-
name: "
|
|
10192
|
-
type: "
|
|
10197
|
+
name: "orderAddress",
|
|
10198
|
+
type: "address",
|
|
10193
10199
|
indexed: true,
|
|
10194
|
-
internalType: "
|
|
10200
|
+
internalType: "address"
|
|
10195
10201
|
},
|
|
10196
10202
|
{
|
|
10197
10203
|
name: "pool",
|
|
@@ -10205,6 +10211,12 @@ var PoolResolverBase = [
|
|
|
10205
10211
|
indexed: true,
|
|
10206
10212
|
internalType: "address"
|
|
10207
10213
|
},
|
|
10214
|
+
{
|
|
10215
|
+
name: "requestHash",
|
|
10216
|
+
type: "bytes32",
|
|
10217
|
+
indexed: false,
|
|
10218
|
+
internalType: "bytes32"
|
|
10219
|
+
},
|
|
10208
10220
|
{
|
|
10209
10221
|
name: "kind",
|
|
10210
10222
|
type: "uint8",
|
|
@@ -13770,34 +13782,51 @@ var IRelayFundingPool = [
|
|
|
13770
13782
|
name: "debit",
|
|
13771
13783
|
inputs: [
|
|
13772
13784
|
{
|
|
13773
|
-
name: "
|
|
13774
|
-
type: "
|
|
13775
|
-
internalType: "
|
|
13776
|
-
|
|
13777
|
-
|
|
13778
|
-
|
|
13779
|
-
|
|
13780
|
-
|
|
13781
|
-
|
|
13782
|
-
|
|
13783
|
-
|
|
13784
|
-
|
|
13785
|
-
|
|
13786
|
-
|
|
13787
|
-
|
|
13788
|
-
|
|
13789
|
-
|
|
13790
|
-
|
|
13791
|
-
|
|
13792
|
-
|
|
13793
|
-
|
|
13794
|
-
|
|
13795
|
-
|
|
13785
|
+
name: "draw",
|
|
13786
|
+
type: "tuple",
|
|
13787
|
+
internalType: "struct DrawRequest",
|
|
13788
|
+
components: [
|
|
13789
|
+
{
|
|
13790
|
+
name: "account",
|
|
13791
|
+
type: "address",
|
|
13792
|
+
internalType: "address"
|
|
13793
|
+
},
|
|
13794
|
+
{
|
|
13795
|
+
name: "token",
|
|
13796
|
+
type: "address",
|
|
13797
|
+
internalType: "address"
|
|
13798
|
+
},
|
|
13799
|
+
{
|
|
13800
|
+
name: "amount",
|
|
13801
|
+
type: "uint256",
|
|
13802
|
+
internalType: "uint256"
|
|
13803
|
+
},
|
|
13804
|
+
{
|
|
13805
|
+
name: "orderAddress",
|
|
13806
|
+
type: "address",
|
|
13807
|
+
internalType: "address"
|
|
13808
|
+
},
|
|
13809
|
+
{
|
|
13810
|
+
name: "requestHash",
|
|
13811
|
+
type: "bytes32",
|
|
13812
|
+
internalType: "bytes32"
|
|
13813
|
+
},
|
|
13814
|
+
{
|
|
13815
|
+
name: "legIndex",
|
|
13816
|
+
type: "uint256",
|
|
13817
|
+
internalType: "uint256"
|
|
13818
|
+
},
|
|
13819
|
+
{
|
|
13820
|
+
name: "kind",
|
|
13821
|
+
type: "uint8",
|
|
13822
|
+
internalType: "enum DrawLegKind"
|
|
13823
|
+
}
|
|
13824
|
+
]
|
|
13796
13825
|
},
|
|
13797
13826
|
{
|
|
13798
|
-
name: "
|
|
13799
|
-
type: "
|
|
13800
|
-
internalType: "
|
|
13827
|
+
name: "authorization",
|
|
13828
|
+
type: "bytes",
|
|
13829
|
+
internalType: "bytes"
|
|
13801
13830
|
}
|
|
13802
13831
|
],
|
|
13803
13832
|
outputs: [
|
|
@@ -13833,9 +13862,9 @@ var IRelayFundingPool = [
|
|
|
13833
13862
|
name: "drawRecords",
|
|
13834
13863
|
inputs: [
|
|
13835
13864
|
{
|
|
13836
|
-
name: "
|
|
13837
|
-
type: "
|
|
13838
|
-
internalType: "
|
|
13865
|
+
name: "orderAddress",
|
|
13866
|
+
type: "address",
|
|
13867
|
+
internalType: "address"
|
|
13839
13868
|
},
|
|
13840
13869
|
{
|
|
13841
13870
|
name: "account",
|
|
@@ -13857,6 +13886,37 @@ var IRelayFundingPool = [
|
|
|
13857
13886
|
],
|
|
13858
13887
|
stateMutability: "view"
|
|
13859
13888
|
},
|
|
13889
|
+
{
|
|
13890
|
+
type: "function",
|
|
13891
|
+
name: "hashDrawAuthorization",
|
|
13892
|
+
inputs: [
|
|
13893
|
+
{
|
|
13894
|
+
name: "authorization",
|
|
13895
|
+
type: "tuple",
|
|
13896
|
+
internalType: "struct DrawAuthorization",
|
|
13897
|
+
components: [
|
|
13898
|
+
{
|
|
13899
|
+
name: "account",
|
|
13900
|
+
type: "address",
|
|
13901
|
+
internalType: "address"
|
|
13902
|
+
},
|
|
13903
|
+
{
|
|
13904
|
+
name: "orderAddress",
|
|
13905
|
+
type: "address",
|
|
13906
|
+
internalType: "address"
|
|
13907
|
+
}
|
|
13908
|
+
]
|
|
13909
|
+
}
|
|
13910
|
+
],
|
|
13911
|
+
outputs: [
|
|
13912
|
+
{
|
|
13913
|
+
name: "digest",
|
|
13914
|
+
type: "bytes32",
|
|
13915
|
+
internalType: "bytes32"
|
|
13916
|
+
}
|
|
13917
|
+
],
|
|
13918
|
+
stateMutability: "view"
|
|
13919
|
+
},
|
|
13860
13920
|
{
|
|
13861
13921
|
type: "function",
|
|
13862
13922
|
name: "hashSponsorshipConfigUpdate",
|
|
@@ -13876,6 +13936,11 @@ var IRelayFundingPool = [
|
|
|
13876
13936
|
type: "address",
|
|
13877
13937
|
internalType: "address"
|
|
13878
13938
|
},
|
|
13939
|
+
{
|
|
13940
|
+
name: "authorizer",
|
|
13941
|
+
type: "address",
|
|
13942
|
+
internalType: "address"
|
|
13943
|
+
},
|
|
13879
13944
|
{
|
|
13880
13945
|
name: "perOrderCap",
|
|
13881
13946
|
type: "uint256",
|
|
@@ -14015,9 +14080,9 @@ var IRelayFundingPool = [
|
|
|
14015
14080
|
name: "orderDraws",
|
|
14016
14081
|
inputs: [
|
|
14017
14082
|
{
|
|
14018
|
-
name: "
|
|
14019
|
-
type: "
|
|
14020
|
-
internalType: "
|
|
14083
|
+
name: "orderAddress",
|
|
14084
|
+
type: "address",
|
|
14085
|
+
internalType: "address"
|
|
14021
14086
|
},
|
|
14022
14087
|
{
|
|
14023
14088
|
name: "account",
|
|
@@ -14044,15 +14109,25 @@ var IRelayFundingPool = [
|
|
|
14044
14109
|
name: "setSponsorshipConfig",
|
|
14045
14110
|
inputs: [
|
|
14046
14111
|
{
|
|
14047
|
-
name: "
|
|
14048
|
-
type: "address",
|
|
14049
|
-
internalType: "address"
|
|
14050
|
-
},
|
|
14051
|
-
{
|
|
14052
|
-
name: "config",
|
|
14112
|
+
name: "update",
|
|
14053
14113
|
type: "tuple",
|
|
14054
|
-
internalType: "struct
|
|
14114
|
+
internalType: "struct SponsorshipConfigUpdate",
|
|
14055
14115
|
components: [
|
|
14116
|
+
{
|
|
14117
|
+
name: "account",
|
|
14118
|
+
type: "address",
|
|
14119
|
+
internalType: "address"
|
|
14120
|
+
},
|
|
14121
|
+
{
|
|
14122
|
+
name: "token",
|
|
14123
|
+
type: "address",
|
|
14124
|
+
internalType: "address"
|
|
14125
|
+
},
|
|
14126
|
+
{
|
|
14127
|
+
name: "authorizer",
|
|
14128
|
+
type: "address",
|
|
14129
|
+
internalType: "address"
|
|
14130
|
+
},
|
|
14056
14131
|
{
|
|
14057
14132
|
name: "perOrderCap",
|
|
14058
14133
|
type: "uint256",
|
|
@@ -14067,8 +14142,23 @@ var IRelayFundingPool = [
|
|
|
14067
14142
|
name: "expiry",
|
|
14068
14143
|
type: "uint64",
|
|
14069
14144
|
internalType: "uint64"
|
|
14145
|
+
},
|
|
14146
|
+
{
|
|
14147
|
+
name: "nonce",
|
|
14148
|
+
type: "uint256",
|
|
14149
|
+
internalType: "uint256"
|
|
14150
|
+
},
|
|
14151
|
+
{
|
|
14152
|
+
name: "deadline",
|
|
14153
|
+
type: "uint256",
|
|
14154
|
+
internalType: "uint256"
|
|
14070
14155
|
}
|
|
14071
14156
|
]
|
|
14157
|
+
},
|
|
14158
|
+
{
|
|
14159
|
+
name: "signature",
|
|
14160
|
+
type: "bytes",
|
|
14161
|
+
internalType: "bytes"
|
|
14072
14162
|
}
|
|
14073
14163
|
],
|
|
14074
14164
|
outputs: [
|
|
@@ -14080,20 +14170,15 @@ var IRelayFundingPool = [
|
|
|
14080
14170
|
name: "setSponsorshipConfig",
|
|
14081
14171
|
inputs: [
|
|
14082
14172
|
{
|
|
14083
|
-
name: "
|
|
14173
|
+
name: "token",
|
|
14174
|
+
type: "address",
|
|
14175
|
+
internalType: "address"
|
|
14176
|
+
},
|
|
14177
|
+
{
|
|
14178
|
+
name: "config",
|
|
14084
14179
|
type: "tuple",
|
|
14085
|
-
internalType: "struct
|
|
14180
|
+
internalType: "struct SponsorshipConfig",
|
|
14086
14181
|
components: [
|
|
14087
|
-
{
|
|
14088
|
-
name: "account",
|
|
14089
|
-
type: "address",
|
|
14090
|
-
internalType: "address"
|
|
14091
|
-
},
|
|
14092
|
-
{
|
|
14093
|
-
name: "token",
|
|
14094
|
-
type: "address",
|
|
14095
|
-
internalType: "address"
|
|
14096
|
-
},
|
|
14097
14182
|
{
|
|
14098
14183
|
name: "perOrderCap",
|
|
14099
14184
|
type: "uint256",
|
|
@@ -14104,27 +14189,17 @@ var IRelayFundingPool = [
|
|
|
14104
14189
|
type: "uint256",
|
|
14105
14190
|
internalType: "uint256"
|
|
14106
14191
|
},
|
|
14192
|
+
{
|
|
14193
|
+
name: "authorizer",
|
|
14194
|
+
type: "address",
|
|
14195
|
+
internalType: "address"
|
|
14196
|
+
},
|
|
14107
14197
|
{
|
|
14108
14198
|
name: "expiry",
|
|
14109
14199
|
type: "uint64",
|
|
14110
14200
|
internalType: "uint64"
|
|
14111
|
-
},
|
|
14112
|
-
{
|
|
14113
|
-
name: "nonce",
|
|
14114
|
-
type: "uint256",
|
|
14115
|
-
internalType: "uint256"
|
|
14116
|
-
},
|
|
14117
|
-
{
|
|
14118
|
-
name: "deadline",
|
|
14119
|
-
type: "uint256",
|
|
14120
|
-
internalType: "uint256"
|
|
14121
14201
|
}
|
|
14122
14202
|
]
|
|
14123
|
-
},
|
|
14124
|
-
{
|
|
14125
|
-
name: "signature",
|
|
14126
|
-
type: "bytes",
|
|
14127
|
-
internalType: "bytes"
|
|
14128
14203
|
}
|
|
14129
14204
|
],
|
|
14130
14205
|
outputs: [
|
|
@@ -14222,6 +14297,11 @@ var IRelayFundingPool = [
|
|
|
14222
14297
|
type: "uint256",
|
|
14223
14298
|
internalType: "uint256"
|
|
14224
14299
|
},
|
|
14300
|
+
{
|
|
14301
|
+
name: "authorizer",
|
|
14302
|
+
type: "address",
|
|
14303
|
+
internalType: "address"
|
|
14304
|
+
},
|
|
14225
14305
|
{
|
|
14226
14306
|
name: "expiry",
|
|
14227
14307
|
type: "uint64",
|
|
@@ -14357,6 +14437,20 @@ var RelayFundingPool = [
|
|
|
14357
14437
|
],
|
|
14358
14438
|
stateMutability: "view"
|
|
14359
14439
|
},
|
|
14440
|
+
{
|
|
14441
|
+
type: "function",
|
|
14442
|
+
name: "DRAW_AUTHORIZATION_TYPEHASH",
|
|
14443
|
+
inputs: [
|
|
14444
|
+
],
|
|
14445
|
+
outputs: [
|
|
14446
|
+
{
|
|
14447
|
+
name: "",
|
|
14448
|
+
type: "bytes32",
|
|
14449
|
+
internalType: "bytes32"
|
|
14450
|
+
}
|
|
14451
|
+
],
|
|
14452
|
+
stateMutability: "view"
|
|
14453
|
+
},
|
|
14360
14454
|
{
|
|
14361
14455
|
type: "function",
|
|
14362
14456
|
name: "POOL_WITHDRAWAL_TYPEHASH",
|
|
@@ -14490,34 +14584,51 @@ var RelayFundingPool = [
|
|
|
14490
14584
|
name: "debit",
|
|
14491
14585
|
inputs: [
|
|
14492
14586
|
{
|
|
14493
|
-
name: "
|
|
14494
|
-
type: "
|
|
14495
|
-
internalType: "
|
|
14496
|
-
|
|
14497
|
-
|
|
14498
|
-
|
|
14499
|
-
|
|
14500
|
-
|
|
14501
|
-
|
|
14502
|
-
|
|
14503
|
-
|
|
14504
|
-
|
|
14505
|
-
|
|
14506
|
-
|
|
14507
|
-
|
|
14508
|
-
|
|
14509
|
-
|
|
14510
|
-
|
|
14511
|
-
|
|
14512
|
-
|
|
14513
|
-
|
|
14514
|
-
|
|
14515
|
-
|
|
14587
|
+
name: "draw",
|
|
14588
|
+
type: "tuple",
|
|
14589
|
+
internalType: "struct DrawRequest",
|
|
14590
|
+
components: [
|
|
14591
|
+
{
|
|
14592
|
+
name: "account",
|
|
14593
|
+
type: "address",
|
|
14594
|
+
internalType: "address"
|
|
14595
|
+
},
|
|
14596
|
+
{
|
|
14597
|
+
name: "token",
|
|
14598
|
+
type: "address",
|
|
14599
|
+
internalType: "address"
|
|
14600
|
+
},
|
|
14601
|
+
{
|
|
14602
|
+
name: "amount",
|
|
14603
|
+
type: "uint256",
|
|
14604
|
+
internalType: "uint256"
|
|
14605
|
+
},
|
|
14606
|
+
{
|
|
14607
|
+
name: "orderAddress",
|
|
14608
|
+
type: "address",
|
|
14609
|
+
internalType: "address"
|
|
14610
|
+
},
|
|
14611
|
+
{
|
|
14612
|
+
name: "requestHash",
|
|
14613
|
+
type: "bytes32",
|
|
14614
|
+
internalType: "bytes32"
|
|
14615
|
+
},
|
|
14616
|
+
{
|
|
14617
|
+
name: "legIndex",
|
|
14618
|
+
type: "uint256",
|
|
14619
|
+
internalType: "uint256"
|
|
14620
|
+
},
|
|
14621
|
+
{
|
|
14622
|
+
name: "kind",
|
|
14623
|
+
type: "uint8",
|
|
14624
|
+
internalType: "enum DrawLegKind"
|
|
14625
|
+
}
|
|
14626
|
+
]
|
|
14516
14627
|
},
|
|
14517
14628
|
{
|
|
14518
|
-
name: "
|
|
14519
|
-
type: "
|
|
14520
|
-
internalType: "
|
|
14629
|
+
name: "authorization",
|
|
14630
|
+
type: "bytes",
|
|
14631
|
+
internalType: "bytes"
|
|
14521
14632
|
}
|
|
14522
14633
|
],
|
|
14523
14634
|
outputs: [
|
|
@@ -14553,9 +14664,9 @@ var RelayFundingPool = [
|
|
|
14553
14664
|
name: "drawRecords",
|
|
14554
14665
|
inputs: [
|
|
14555
14666
|
{
|
|
14556
|
-
name: "
|
|
14557
|
-
type: "
|
|
14558
|
-
internalType: "
|
|
14667
|
+
name: "orderAddress",
|
|
14668
|
+
type: "address",
|
|
14669
|
+
internalType: "address"
|
|
14559
14670
|
},
|
|
14560
14671
|
{
|
|
14561
14672
|
name: "account",
|
|
@@ -14683,6 +14794,37 @@ var RelayFundingPool = [
|
|
|
14683
14794
|
],
|
|
14684
14795
|
stateMutability: "view"
|
|
14685
14796
|
},
|
|
14797
|
+
{
|
|
14798
|
+
type: "function",
|
|
14799
|
+
name: "hashDrawAuthorization",
|
|
14800
|
+
inputs: [
|
|
14801
|
+
{
|
|
14802
|
+
name: "authorization",
|
|
14803
|
+
type: "tuple",
|
|
14804
|
+
internalType: "struct DrawAuthorization",
|
|
14805
|
+
components: [
|
|
14806
|
+
{
|
|
14807
|
+
name: "account",
|
|
14808
|
+
type: "address",
|
|
14809
|
+
internalType: "address"
|
|
14810
|
+
},
|
|
14811
|
+
{
|
|
14812
|
+
name: "orderAddress",
|
|
14813
|
+
type: "address",
|
|
14814
|
+
internalType: "address"
|
|
14815
|
+
}
|
|
14816
|
+
]
|
|
14817
|
+
}
|
|
14818
|
+
],
|
|
14819
|
+
outputs: [
|
|
14820
|
+
{
|
|
14821
|
+
name: "digest",
|
|
14822
|
+
type: "bytes32",
|
|
14823
|
+
internalType: "bytes32"
|
|
14824
|
+
}
|
|
14825
|
+
],
|
|
14826
|
+
stateMutability: "view"
|
|
14827
|
+
},
|
|
14686
14828
|
{
|
|
14687
14829
|
type: "function",
|
|
14688
14830
|
name: "hashSponsorshipConfigUpdate",
|
|
@@ -14702,6 +14844,11 @@ var RelayFundingPool = [
|
|
|
14702
14844
|
type: "address",
|
|
14703
14845
|
internalType: "address"
|
|
14704
14846
|
},
|
|
14847
|
+
{
|
|
14848
|
+
name: "authorizer",
|
|
14849
|
+
type: "address",
|
|
14850
|
+
internalType: "address"
|
|
14851
|
+
},
|
|
14705
14852
|
{
|
|
14706
14853
|
name: "perOrderCap",
|
|
14707
14854
|
type: "uint256",
|
|
@@ -14841,9 +14988,9 @@ var RelayFundingPool = [
|
|
|
14841
14988
|
name: "orderDraws",
|
|
14842
14989
|
inputs: [
|
|
14843
14990
|
{
|
|
14844
|
-
name: "
|
|
14845
|
-
type: "
|
|
14846
|
-
internalType: "
|
|
14991
|
+
name: "orderAddress",
|
|
14992
|
+
type: "address",
|
|
14993
|
+
internalType: "address"
|
|
14847
14994
|
},
|
|
14848
14995
|
{
|
|
14849
14996
|
name: "account",
|
|
@@ -14931,15 +15078,25 @@ var RelayFundingPool = [
|
|
|
14931
15078
|
name: "setSponsorshipConfig",
|
|
14932
15079
|
inputs: [
|
|
14933
15080
|
{
|
|
14934
|
-
name: "
|
|
14935
|
-
type: "address",
|
|
14936
|
-
internalType: "address"
|
|
14937
|
-
},
|
|
14938
|
-
{
|
|
14939
|
-
name: "config",
|
|
15081
|
+
name: "update",
|
|
14940
15082
|
type: "tuple",
|
|
14941
|
-
internalType: "struct
|
|
15083
|
+
internalType: "struct SponsorshipConfigUpdate",
|
|
14942
15084
|
components: [
|
|
15085
|
+
{
|
|
15086
|
+
name: "account",
|
|
15087
|
+
type: "address",
|
|
15088
|
+
internalType: "address"
|
|
15089
|
+
},
|
|
15090
|
+
{
|
|
15091
|
+
name: "token",
|
|
15092
|
+
type: "address",
|
|
15093
|
+
internalType: "address"
|
|
15094
|
+
},
|
|
15095
|
+
{
|
|
15096
|
+
name: "authorizer",
|
|
15097
|
+
type: "address",
|
|
15098
|
+
internalType: "address"
|
|
15099
|
+
},
|
|
14943
15100
|
{
|
|
14944
15101
|
name: "perOrderCap",
|
|
14945
15102
|
type: "uint256",
|
|
@@ -14954,8 +15111,23 @@ var RelayFundingPool = [
|
|
|
14954
15111
|
name: "expiry",
|
|
14955
15112
|
type: "uint64",
|
|
14956
15113
|
internalType: "uint64"
|
|
15114
|
+
},
|
|
15115
|
+
{
|
|
15116
|
+
name: "nonce",
|
|
15117
|
+
type: "uint256",
|
|
15118
|
+
internalType: "uint256"
|
|
15119
|
+
},
|
|
15120
|
+
{
|
|
15121
|
+
name: "deadline",
|
|
15122
|
+
type: "uint256",
|
|
15123
|
+
internalType: "uint256"
|
|
14957
15124
|
}
|
|
14958
15125
|
]
|
|
15126
|
+
},
|
|
15127
|
+
{
|
|
15128
|
+
name: "signature",
|
|
15129
|
+
type: "bytes",
|
|
15130
|
+
internalType: "bytes"
|
|
14959
15131
|
}
|
|
14960
15132
|
],
|
|
14961
15133
|
outputs: [
|
|
@@ -14967,20 +15139,15 @@ var RelayFundingPool = [
|
|
|
14967
15139
|
name: "setSponsorshipConfig",
|
|
14968
15140
|
inputs: [
|
|
14969
15141
|
{
|
|
14970
|
-
name: "
|
|
15142
|
+
name: "token",
|
|
15143
|
+
type: "address",
|
|
15144
|
+
internalType: "address"
|
|
15145
|
+
},
|
|
15146
|
+
{
|
|
15147
|
+
name: "config",
|
|
14971
15148
|
type: "tuple",
|
|
14972
|
-
internalType: "struct
|
|
15149
|
+
internalType: "struct SponsorshipConfig",
|
|
14973
15150
|
components: [
|
|
14974
|
-
{
|
|
14975
|
-
name: "account",
|
|
14976
|
-
type: "address",
|
|
14977
|
-
internalType: "address"
|
|
14978
|
-
},
|
|
14979
|
-
{
|
|
14980
|
-
name: "token",
|
|
14981
|
-
type: "address",
|
|
14982
|
-
internalType: "address"
|
|
14983
|
-
},
|
|
14984
15151
|
{
|
|
14985
15152
|
name: "perOrderCap",
|
|
14986
15153
|
type: "uint256",
|
|
@@ -14991,27 +15158,17 @@ var RelayFundingPool = [
|
|
|
14991
15158
|
type: "uint256",
|
|
14992
15159
|
internalType: "uint256"
|
|
14993
15160
|
},
|
|
15161
|
+
{
|
|
15162
|
+
name: "authorizer",
|
|
15163
|
+
type: "address",
|
|
15164
|
+
internalType: "address"
|
|
15165
|
+
},
|
|
14994
15166
|
{
|
|
14995
15167
|
name: "expiry",
|
|
14996
15168
|
type: "uint64",
|
|
14997
15169
|
internalType: "uint64"
|
|
14998
|
-
},
|
|
14999
|
-
{
|
|
15000
|
-
name: "nonce",
|
|
15001
|
-
type: "uint256",
|
|
15002
|
-
internalType: "uint256"
|
|
15003
|
-
},
|
|
15004
|
-
{
|
|
15005
|
-
name: "deadline",
|
|
15006
|
-
type: "uint256",
|
|
15007
|
-
internalType: "uint256"
|
|
15008
15170
|
}
|
|
15009
15171
|
]
|
|
15010
|
-
},
|
|
15011
|
-
{
|
|
15012
|
-
name: "signature",
|
|
15013
|
-
type: "bytes",
|
|
15014
|
-
internalType: "bytes"
|
|
15015
15172
|
}
|
|
15016
15173
|
],
|
|
15017
15174
|
outputs: [
|
|
@@ -15109,6 +15266,11 @@ var RelayFundingPool = [
|
|
|
15109
15266
|
type: "uint256",
|
|
15110
15267
|
internalType: "uint256"
|
|
15111
15268
|
},
|
|
15269
|
+
{
|
|
15270
|
+
name: "authorizer",
|
|
15271
|
+
type: "address",
|
|
15272
|
+
internalType: "address"
|
|
15273
|
+
},
|
|
15112
15274
|
{
|
|
15113
15275
|
name: "expiry",
|
|
15114
15276
|
type: "uint64",
|
|
@@ -15371,10 +15533,10 @@ var RelayFundingPool = [
|
|
|
15371
15533
|
name: "Drawn",
|
|
15372
15534
|
inputs: [
|
|
15373
15535
|
{
|
|
15374
|
-
name: "
|
|
15375
|
-
type: "
|
|
15536
|
+
name: "orderAddress",
|
|
15537
|
+
type: "address",
|
|
15376
15538
|
indexed: true,
|
|
15377
|
-
internalType: "
|
|
15539
|
+
internalType: "address"
|
|
15378
15540
|
},
|
|
15379
15541
|
{
|
|
15380
15542
|
name: "account",
|
|
@@ -15388,6 +15550,12 @@ var RelayFundingPool = [
|
|
|
15388
15550
|
indexed: true,
|
|
15389
15551
|
internalType: "address"
|
|
15390
15552
|
},
|
|
15553
|
+
{
|
|
15554
|
+
name: "requestHash",
|
|
15555
|
+
type: "bytes32",
|
|
15556
|
+
indexed: false,
|
|
15557
|
+
internalType: "bytes32"
|
|
15558
|
+
},
|
|
15391
15559
|
{
|
|
15392
15560
|
name: "resolver",
|
|
15393
15561
|
type: "address",
|
|
@@ -15526,6 +15694,12 @@ var RelayFundingPool = [
|
|
|
15526
15694
|
indexed: true,
|
|
15527
15695
|
internalType: "address"
|
|
15528
15696
|
},
|
|
15697
|
+
{
|
|
15698
|
+
name: "authorizer",
|
|
15699
|
+
type: "address",
|
|
15700
|
+
indexed: false,
|
|
15701
|
+
internalType: "address"
|
|
15702
|
+
},
|
|
15529
15703
|
{
|
|
15530
15704
|
name: "perOrderCap",
|
|
15531
15705
|
type: "uint256",
|
|
@@ -15643,9 +15817,9 @@ var RelayFundingPool = [
|
|
|
15643
15817
|
name: "AlreadyDrawn",
|
|
15644
15818
|
inputs: [
|
|
15645
15819
|
{
|
|
15646
|
-
name: "
|
|
15647
|
-
type: "
|
|
15648
|
-
internalType: "
|
|
15820
|
+
name: "orderAddress",
|
|
15821
|
+
type: "address",
|
|
15822
|
+
internalType: "address"
|
|
15649
15823
|
},
|
|
15650
15824
|
{
|
|
15651
15825
|
name: "account",
|
|
@@ -15723,6 +15897,27 @@ var RelayFundingPool = [
|
|
|
15723
15897
|
}
|
|
15724
15898
|
]
|
|
15725
15899
|
},
|
|
15900
|
+
{
|
|
15901
|
+
type: "error",
|
|
15902
|
+
name: "InvalidDrawAuthorization",
|
|
15903
|
+
inputs: [
|
|
15904
|
+
{
|
|
15905
|
+
name: "account",
|
|
15906
|
+
type: "address",
|
|
15907
|
+
internalType: "address"
|
|
15908
|
+
},
|
|
15909
|
+
{
|
|
15910
|
+
name: "authorizer",
|
|
15911
|
+
type: "address",
|
|
15912
|
+
internalType: "address"
|
|
15913
|
+
},
|
|
15914
|
+
{
|
|
15915
|
+
name: "orderAddress",
|
|
15916
|
+
type: "address",
|
|
15917
|
+
internalType: "address"
|
|
15918
|
+
}
|
|
15919
|
+
]
|
|
15920
|
+
},
|
|
15726
15921
|
{
|
|
15727
15922
|
type: "error",
|
|
15728
15923
|
name: "InvalidShortString",
|
|
@@ -15751,6 +15946,22 @@ var RelayFundingPool = [
|
|
|
15751
15946
|
}
|
|
15752
15947
|
]
|
|
15753
15948
|
},
|
|
15949
|
+
{
|
|
15950
|
+
type: "error",
|
|
15951
|
+
name: "NoAuthorizer",
|
|
15952
|
+
inputs: [
|
|
15953
|
+
{
|
|
15954
|
+
name: "account",
|
|
15955
|
+
type: "address",
|
|
15956
|
+
internalType: "address"
|
|
15957
|
+
},
|
|
15958
|
+
{
|
|
15959
|
+
name: "token",
|
|
15960
|
+
type: "address",
|
|
15961
|
+
internalType: "address"
|
|
15962
|
+
}
|
|
15963
|
+
]
|
|
15964
|
+
},
|
|
15754
15965
|
{
|
|
15755
15966
|
type: "error",
|
|
15756
15967
|
name: "PerOrderCapExceeded",
|