@optimex-xyz/market-maker-sdk 0.8.0-dev-91a0821 → 0.8.0-staging-62f78c8
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 +54 -84
- package/dist/index.d.ts +54 -84
- package/dist/index.js +18 -37
- package/dist/index.mjs +18 -37
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1562,7 +1562,7 @@ declare namespace ITypes$1 {
|
|
|
1562
1562
|
}
|
|
1563
1563
|
interface RouterInterface extends Interface {
|
|
1564
1564
|
getFunction(nameOrSignature: "SIGNER" | "abort" | "bundlePayment" | "confirmDeposit" | "confirmPayment" | "confirmPresign" | "confirmSettlement" | "getAffiliateInfo" | "getCurrentEpoch" | "getCurrentStage" | "getFailureInfo" | "getFeeDetails" | "getHandler" | "getHandlerOf" | "getHistoryCount" | "getPMMSelection" | "getPendingTrades" | "getPendingTradesCount" | "getRefundPresign" | "getRegisteredHandlers" | "getSettlementPresigns" | "getSolver" | "getTradeData" | "getTradeFinalization" | "management" | "migrate" | "refund" | "report" | "selectPMM" | "setManagement" | "setRoute" | "submitDeposit" | "submitTrade"): FunctionFragment;
|
|
1565
|
-
getEvent(nameOrSignatureOrTopic: "Abort" | "ConfirmDeposit" | "ConfirmPayment" | "ConfirmPresign" | "ConfirmRefund" | "ConfirmSettlement" | "MakePayment" | "ReportFailure" | "SelectPMM" | "SubmitDeposit" | "SubmitTradeInfo" | "
|
|
1565
|
+
getEvent(nameOrSignatureOrTopic: "Abort" | "ConfirmDeposit" | "ConfirmPayment" | "ConfirmPresign" | "ConfirmRefund" | "ConfirmSettlement" | "MakePayment" | "ReportFailure" | "SelectPMM" | "SubmitDeposit" | "SubmitTradeInfo" | "UpdatedRoute"): EventFragment;
|
|
1566
1566
|
encodeFunctionData(functionFragment: "SIGNER", values?: undefined): string;
|
|
1567
1567
|
encodeFunctionData(functionFragment: "abort", values: [BytesLike, ITypes$1.RFQInfoStruct]): string;
|
|
1568
1568
|
encodeFunctionData(functionFragment: "bundlePayment", values: [ITypes$1.BundlePaymentStruct]): string;
|
|
@@ -1649,11 +1649,11 @@ declare namespace AbortEvent {
|
|
|
1649
1649
|
type LogDescription = TypedLogDescription<Event>;
|
|
1650
1650
|
}
|
|
1651
1651
|
declare namespace ConfirmDepositEvent {
|
|
1652
|
-
type InputTuple = [mpc: AddressLike,
|
|
1653
|
-
type OutputTuple = [mpc: string,
|
|
1652
|
+
type InputTuple = [mpc: AddressLike, depositId: BytesLike];
|
|
1653
|
+
type OutputTuple = [mpc: string, depositId: string];
|
|
1654
1654
|
interface OutputObject {
|
|
1655
1655
|
mpc: string;
|
|
1656
|
-
|
|
1656
|
+
depositId: string;
|
|
1657
1657
|
}
|
|
1658
1658
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1659
1659
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -1750,11 +1750,11 @@ declare namespace SelectPMMEvent {
|
|
|
1750
1750
|
type LogDescription = TypedLogDescription<Event>;
|
|
1751
1751
|
}
|
|
1752
1752
|
declare namespace SubmitDepositEvent {
|
|
1753
|
-
type InputTuple = [solver: AddressLike,
|
|
1754
|
-
type OutputTuple = [solver: string,
|
|
1753
|
+
type InputTuple = [solver: AddressLike, depositId: BytesLike];
|
|
1754
|
+
type OutputTuple = [solver: string, depositId: string];
|
|
1755
1755
|
interface OutputObject {
|
|
1756
1756
|
solver: string;
|
|
1757
|
-
|
|
1757
|
+
depositId: string;
|
|
1758
1758
|
}
|
|
1759
1759
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1760
1760
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -1773,18 +1773,6 @@ declare namespace SubmitTradeInfoEvent {
|
|
|
1773
1773
|
type Log = TypedEventLog<Event>;
|
|
1774
1774
|
type LogDescription = TypedLogDescription<Event>;
|
|
1775
1775
|
}
|
|
1776
|
-
declare namespace UpdatedManagementEvent {
|
|
1777
|
-
type InputTuple = [operator: AddressLike, newManagement: AddressLike];
|
|
1778
|
-
type OutputTuple = [operator: string, newManagement: string];
|
|
1779
|
-
interface OutputObject {
|
|
1780
|
-
operator: string;
|
|
1781
|
-
newManagement: string;
|
|
1782
|
-
}
|
|
1783
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1784
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1785
|
-
type Log = TypedEventLog<Event>;
|
|
1786
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1787
|
-
}
|
|
1788
1776
|
declare namespace UpdatedRouteEvent {
|
|
1789
1777
|
type InputTuple = [
|
|
1790
1778
|
handler: AddressLike,
|
|
@@ -1832,7 +1820,7 @@ interface Router extends BaseContract {
|
|
|
1832
1820
|
void
|
|
1833
1821
|
], "nonpayable">;
|
|
1834
1822
|
confirmDeposit: TypedContractMethod<[
|
|
1835
|
-
|
|
1823
|
+
referenceId: BytesLike,
|
|
1836
1824
|
signature: BytesLike,
|
|
1837
1825
|
depositFromList: BytesLike[]
|
|
1838
1826
|
], [
|
|
@@ -1858,7 +1846,7 @@ interface Router extends BaseContract {
|
|
|
1858
1846
|
void
|
|
1859
1847
|
], "nonpayable">;
|
|
1860
1848
|
getAffiliateInfo: TypedContractMethod<[
|
|
1861
|
-
|
|
1849
|
+
referenceId: BytesLike
|
|
1862
1850
|
], [
|
|
1863
1851
|
ITypes$1.AffiliateStructOutput
|
|
1864
1852
|
], "view">;
|
|
@@ -1868,7 +1856,7 @@ interface Router extends BaseContract {
|
|
|
1868
1856
|
[bigint, bigint, bigint]
|
|
1869
1857
|
], "view">;
|
|
1870
1858
|
getCurrentStage: TypedContractMethod<[
|
|
1871
|
-
|
|
1859
|
+
referenceId: BytesLike
|
|
1872
1860
|
], [
|
|
1873
1861
|
[bigint, string] & {
|
|
1874
1862
|
stage: bigint;
|
|
@@ -1876,12 +1864,12 @@ interface Router extends BaseContract {
|
|
|
1876
1864
|
}
|
|
1877
1865
|
], "view">;
|
|
1878
1866
|
getFailureInfo: TypedContractMethod<[
|
|
1879
|
-
|
|
1867
|
+
referenceId: BytesLike
|
|
1880
1868
|
], [
|
|
1881
1869
|
ITypes$1.FailureDetailsStructOutput
|
|
1882
1870
|
], "view">;
|
|
1883
1871
|
getFeeDetails: TypedContractMethod<[
|
|
1884
|
-
|
|
1872
|
+
referenceId: BytesLike
|
|
1885
1873
|
], [
|
|
1886
1874
|
ITypes$1.FeeDetailsStructOutput
|
|
1887
1875
|
], "view">;
|
|
@@ -1895,7 +1883,7 @@ interface Router extends BaseContract {
|
|
|
1895
1883
|
}
|
|
1896
1884
|
], "view">;
|
|
1897
1885
|
getHandlerOf: TypedContractMethod<[
|
|
1898
|
-
|
|
1886
|
+
referenceId: BytesLike
|
|
1899
1887
|
], [
|
|
1900
1888
|
[string, string] & {
|
|
1901
1889
|
handler: string;
|
|
@@ -1909,7 +1897,7 @@ interface Router extends BaseContract {
|
|
|
1909
1897
|
bigint
|
|
1910
1898
|
], "view">;
|
|
1911
1899
|
getPMMSelection: TypedContractMethod<[
|
|
1912
|
-
|
|
1900
|
+
referenceId: BytesLike
|
|
1913
1901
|
], [
|
|
1914
1902
|
ITypes$1.PMMSelectionStructOutput
|
|
1915
1903
|
], "view">;
|
|
@@ -1928,7 +1916,7 @@ interface Router extends BaseContract {
|
|
|
1928
1916
|
bigint
|
|
1929
1917
|
], "view">;
|
|
1930
1918
|
getRefundPresign: TypedContractMethod<[
|
|
1931
|
-
|
|
1919
|
+
referenceId: BytesLike
|
|
1932
1920
|
], [
|
|
1933
1921
|
ITypes$1.RefundPresignStructOutput
|
|
1934
1922
|
], "view">;
|
|
@@ -1941,18 +1929,18 @@ interface Router extends BaseContract {
|
|
|
1941
1929
|
string[]
|
|
1942
1930
|
], "view">;
|
|
1943
1931
|
getSettlementPresigns: TypedContractMethod<[
|
|
1944
|
-
|
|
1932
|
+
referenceId: BytesLike
|
|
1945
1933
|
], [
|
|
1946
1934
|
ITypes$1.SettlementPresignStructOutput[]
|
|
1947
1935
|
], "view">;
|
|
1948
|
-
getSolver: TypedContractMethod<[
|
|
1936
|
+
getSolver: TypedContractMethod<[referenceId: BytesLike], [string], "view">;
|
|
1949
1937
|
getTradeData: TypedContractMethod<[
|
|
1950
|
-
|
|
1938
|
+
referenceId: BytesLike
|
|
1951
1939
|
], [
|
|
1952
1940
|
ITypes$1.TradeDataStructOutput
|
|
1953
1941
|
], "view">;
|
|
1954
1942
|
getTradeFinalization: TypedContractMethod<[
|
|
1955
|
-
|
|
1943
|
+
referenceId: BytesLike
|
|
1956
1944
|
], [
|
|
1957
1945
|
ITypes$1.TradeFinalizationStructOutput
|
|
1958
1946
|
], "view">;
|
|
@@ -1964,14 +1952,14 @@ interface Router extends BaseContract {
|
|
|
1964
1952
|
void
|
|
1965
1953
|
], "nonpayable">;
|
|
1966
1954
|
refund: TypedContractMethod<[
|
|
1967
|
-
|
|
1955
|
+
referenceId: BytesLike,
|
|
1968
1956
|
refundTxId: BytesLike,
|
|
1969
1957
|
signature: BytesLike
|
|
1970
1958
|
], [
|
|
1971
1959
|
void
|
|
1972
1960
|
], "nonpayable">;
|
|
1973
1961
|
report: TypedContractMethod<[
|
|
1974
|
-
|
|
1962
|
+
referenceId: BytesLike,
|
|
1975
1963
|
msgError: BytesLike,
|
|
1976
1964
|
referenceInfo: BytesLike,
|
|
1977
1965
|
signature: BytesLike
|
|
@@ -1997,7 +1985,7 @@ interface Router extends BaseContract {
|
|
|
1997
1985
|
void
|
|
1998
1986
|
], "nonpayable">;
|
|
1999
1987
|
submitDeposit: TypedContractMethod<[
|
|
2000
|
-
|
|
1988
|
+
depositId: BytesLike,
|
|
2001
1989
|
tradeData: ITypes$1.TradeDataStruct,
|
|
2002
1990
|
refundPresign: ITypes$1.RefundPresignStruct
|
|
2003
1991
|
], [
|
|
@@ -2026,7 +2014,7 @@ interface Router extends BaseContract {
|
|
|
2026
2014
|
void
|
|
2027
2015
|
], "nonpayable">;
|
|
2028
2016
|
getFunction(nameOrSignature: "confirmDeposit"): TypedContractMethod<[
|
|
2029
|
-
|
|
2017
|
+
referenceId: BytesLike,
|
|
2030
2018
|
signature: BytesLike,
|
|
2031
2019
|
depositFromList: BytesLike[]
|
|
2032
2020
|
], [
|
|
@@ -2052,7 +2040,7 @@ interface Router extends BaseContract {
|
|
|
2052
2040
|
void
|
|
2053
2041
|
], "nonpayable">;
|
|
2054
2042
|
getFunction(nameOrSignature: "getAffiliateInfo"): TypedContractMethod<[
|
|
2055
|
-
|
|
2043
|
+
referenceId: BytesLike
|
|
2056
2044
|
], [
|
|
2057
2045
|
ITypes$1.AffiliateStructOutput
|
|
2058
2046
|
], "view">;
|
|
@@ -2062,7 +2050,7 @@ interface Router extends BaseContract {
|
|
|
2062
2050
|
[bigint, bigint, bigint]
|
|
2063
2051
|
], "view">;
|
|
2064
2052
|
getFunction(nameOrSignature: "getCurrentStage"): TypedContractMethod<[
|
|
2065
|
-
|
|
2053
|
+
referenceId: BytesLike
|
|
2066
2054
|
], [
|
|
2067
2055
|
[bigint, string] & {
|
|
2068
2056
|
stage: bigint;
|
|
@@ -2070,12 +2058,12 @@ interface Router extends BaseContract {
|
|
|
2070
2058
|
}
|
|
2071
2059
|
], "view">;
|
|
2072
2060
|
getFunction(nameOrSignature: "getFailureInfo"): TypedContractMethod<[
|
|
2073
|
-
|
|
2061
|
+
referenceId: BytesLike
|
|
2074
2062
|
], [
|
|
2075
2063
|
ITypes$1.FailureDetailsStructOutput
|
|
2076
2064
|
], "view">;
|
|
2077
2065
|
getFunction(nameOrSignature: "getFeeDetails"): TypedContractMethod<[
|
|
2078
|
-
|
|
2066
|
+
referenceId: BytesLike
|
|
2079
2067
|
], [
|
|
2080
2068
|
ITypes$1.FeeDetailsStructOutput
|
|
2081
2069
|
], "view">;
|
|
@@ -2089,7 +2077,7 @@ interface Router extends BaseContract {
|
|
|
2089
2077
|
}
|
|
2090
2078
|
], "view">;
|
|
2091
2079
|
getFunction(nameOrSignature: "getHandlerOf"): TypedContractMethod<[
|
|
2092
|
-
|
|
2080
|
+
referenceId: BytesLike
|
|
2093
2081
|
], [
|
|
2094
2082
|
[string, string] & {
|
|
2095
2083
|
handler: string;
|
|
@@ -2103,7 +2091,7 @@ interface Router extends BaseContract {
|
|
|
2103
2091
|
bigint
|
|
2104
2092
|
], "view">;
|
|
2105
2093
|
getFunction(nameOrSignature: "getPMMSelection"): TypedContractMethod<[
|
|
2106
|
-
|
|
2094
|
+
referenceId: BytesLike
|
|
2107
2095
|
], [
|
|
2108
2096
|
ITypes$1.PMMSelectionStructOutput
|
|
2109
2097
|
], "view">;
|
|
@@ -2122,7 +2110,7 @@ interface Router extends BaseContract {
|
|
|
2122
2110
|
bigint
|
|
2123
2111
|
], "view">;
|
|
2124
2112
|
getFunction(nameOrSignature: "getRefundPresign"): TypedContractMethod<[
|
|
2125
|
-
|
|
2113
|
+
referenceId: BytesLike
|
|
2126
2114
|
], [
|
|
2127
2115
|
ITypes$1.RefundPresignStructOutput
|
|
2128
2116
|
], "view">;
|
|
@@ -2135,18 +2123,18 @@ interface Router extends BaseContract {
|
|
|
2135
2123
|
string[]
|
|
2136
2124
|
], "view">;
|
|
2137
2125
|
getFunction(nameOrSignature: "getSettlementPresigns"): TypedContractMethod<[
|
|
2138
|
-
|
|
2126
|
+
referenceId: BytesLike
|
|
2139
2127
|
], [
|
|
2140
2128
|
ITypes$1.SettlementPresignStructOutput[]
|
|
2141
2129
|
], "view">;
|
|
2142
|
-
getFunction(nameOrSignature: "getSolver"): TypedContractMethod<[
|
|
2130
|
+
getFunction(nameOrSignature: "getSolver"): TypedContractMethod<[referenceId: BytesLike], [string], "view">;
|
|
2143
2131
|
getFunction(nameOrSignature: "getTradeData"): TypedContractMethod<[
|
|
2144
|
-
|
|
2132
|
+
referenceId: BytesLike
|
|
2145
2133
|
], [
|
|
2146
2134
|
ITypes$1.TradeDataStructOutput
|
|
2147
2135
|
], "view">;
|
|
2148
2136
|
getFunction(nameOrSignature: "getTradeFinalization"): TypedContractMethod<[
|
|
2149
|
-
|
|
2137
|
+
referenceId: BytesLike
|
|
2150
2138
|
], [
|
|
2151
2139
|
ITypes$1.TradeFinalizationStructOutput
|
|
2152
2140
|
], "view">;
|
|
@@ -2158,14 +2146,14 @@ interface Router extends BaseContract {
|
|
|
2158
2146
|
void
|
|
2159
2147
|
], "nonpayable">;
|
|
2160
2148
|
getFunction(nameOrSignature: "refund"): TypedContractMethod<[
|
|
2161
|
-
|
|
2149
|
+
referenceId: BytesLike,
|
|
2162
2150
|
refundTxId: BytesLike,
|
|
2163
2151
|
signature: BytesLike
|
|
2164
2152
|
], [
|
|
2165
2153
|
void
|
|
2166
2154
|
], "nonpayable">;
|
|
2167
2155
|
getFunction(nameOrSignature: "report"): TypedContractMethod<[
|
|
2168
|
-
|
|
2156
|
+
referenceId: BytesLike,
|
|
2169
2157
|
msgError: BytesLike,
|
|
2170
2158
|
referenceInfo: BytesLike,
|
|
2171
2159
|
signature: BytesLike
|
|
@@ -2187,7 +2175,7 @@ interface Router extends BaseContract {
|
|
|
2187
2175
|
void
|
|
2188
2176
|
], "nonpayable">;
|
|
2189
2177
|
getFunction(nameOrSignature: "submitDeposit"): TypedContractMethod<[
|
|
2190
|
-
|
|
2178
|
+
depositId: BytesLike,
|
|
2191
2179
|
tradeData: ITypes$1.TradeDataStruct,
|
|
2192
2180
|
refundPresign: ITypes$1.RefundPresignStruct
|
|
2193
2181
|
], [
|
|
@@ -2213,7 +2201,6 @@ interface Router extends BaseContract {
|
|
|
2213
2201
|
getEvent(key: "SelectPMM"): TypedContractEvent<SelectPMMEvent.InputTuple, SelectPMMEvent.OutputTuple, SelectPMMEvent.OutputObject>;
|
|
2214
2202
|
getEvent(key: "SubmitDeposit"): TypedContractEvent<SubmitDepositEvent.InputTuple, SubmitDepositEvent.OutputTuple, SubmitDepositEvent.OutputObject>;
|
|
2215
2203
|
getEvent(key: "SubmitTradeInfo"): TypedContractEvent<SubmitTradeInfoEvent.InputTuple, SubmitTradeInfoEvent.OutputTuple, SubmitTradeInfoEvent.OutputObject>;
|
|
2216
|
-
getEvent(key: "UpdatedManagement"): TypedContractEvent<UpdatedManagementEvent.InputTuple, UpdatedManagementEvent.OutputTuple, UpdatedManagementEvent.OutputObject>;
|
|
2217
2204
|
getEvent(key: "UpdatedRoute"): TypedContractEvent<UpdatedRouteEvent.InputTuple, UpdatedRouteEvent.OutputTuple, UpdatedRouteEvent.OutputObject>;
|
|
2218
2205
|
filters: {
|
|
2219
2206
|
"Abort(address,bytes32)": TypedContractEvent<AbortEvent.InputTuple, AbortEvent.OutputTuple, AbortEvent.OutputObject>;
|
|
@@ -2238,8 +2225,6 @@ interface Router extends BaseContract {
|
|
|
2238
2225
|
SubmitDeposit: TypedContractEvent<SubmitDepositEvent.InputTuple, SubmitDepositEvent.OutputTuple, SubmitDepositEvent.OutputObject>;
|
|
2239
2226
|
"SubmitTradeInfo(address,bytes32)": TypedContractEvent<SubmitTradeInfoEvent.InputTuple, SubmitTradeInfoEvent.OutputTuple, SubmitTradeInfoEvent.OutputObject>;
|
|
2240
2227
|
SubmitTradeInfo: TypedContractEvent<SubmitTradeInfoEvent.InputTuple, SubmitTradeInfoEvent.OutputTuple, SubmitTradeInfoEvent.OutputObject>;
|
|
2241
|
-
"UpdatedManagement(address,address)": TypedContractEvent<UpdatedManagementEvent.InputTuple, UpdatedManagementEvent.OutputTuple, UpdatedManagementEvent.OutputObject>;
|
|
2242
|
-
UpdatedManagement: TypedContractEvent<UpdatedManagementEvent.InputTuple, UpdatedManagementEvent.OutputTuple, UpdatedManagementEvent.OutputObject>;
|
|
2243
2228
|
"UpdatedRoute(address,bytes,bytes)": TypedContractEvent<UpdatedRouteEvent.InputTuple, UpdatedRouteEvent.OutputTuple, UpdatedRouteEvent.OutputObject>;
|
|
2244
2229
|
UpdatedRoute: TypedContractEvent<UpdatedRouteEvent.InputTuple, UpdatedRouteEvent.OutputTuple, UpdatedRouteEvent.OutputObject>;
|
|
2245
2230
|
};
|
|
@@ -4175,7 +4160,7 @@ declare class Router__factory {
|
|
|
4175
4160
|
}, {
|
|
4176
4161
|
readonly indexed: true;
|
|
4177
4162
|
readonly internalType: "bytes32";
|
|
4178
|
-
readonly name: "
|
|
4163
|
+
readonly name: "depositId";
|
|
4179
4164
|
readonly type: "bytes32";
|
|
4180
4165
|
}];
|
|
4181
4166
|
readonly name: "ConfirmDeposit";
|
|
@@ -4300,7 +4285,7 @@ declare class Router__factory {
|
|
|
4300
4285
|
}, {
|
|
4301
4286
|
readonly indexed: true;
|
|
4302
4287
|
readonly internalType: "bytes32";
|
|
4303
|
-
readonly name: "
|
|
4288
|
+
readonly name: "depositId";
|
|
4304
4289
|
readonly type: "bytes32";
|
|
4305
4290
|
}];
|
|
4306
4291
|
readonly name: "SubmitDeposit";
|
|
@@ -4320,21 +4305,6 @@ declare class Router__factory {
|
|
|
4320
4305
|
}];
|
|
4321
4306
|
readonly name: "SubmitTradeInfo";
|
|
4322
4307
|
readonly type: "event";
|
|
4323
|
-
}, {
|
|
4324
|
-
readonly anonymous: false;
|
|
4325
|
-
readonly inputs: readonly [{
|
|
4326
|
-
readonly indexed: true;
|
|
4327
|
-
readonly internalType: "address";
|
|
4328
|
-
readonly name: "operator";
|
|
4329
|
-
readonly type: "address";
|
|
4330
|
-
}, {
|
|
4331
|
-
readonly indexed: true;
|
|
4332
|
-
readonly internalType: "address";
|
|
4333
|
-
readonly name: "newManagement";
|
|
4334
|
-
readonly type: "address";
|
|
4335
|
-
}];
|
|
4336
|
-
readonly name: "UpdatedManagement";
|
|
4337
|
-
readonly type: "event";
|
|
4338
4308
|
}, {
|
|
4339
4309
|
readonly anonymous: false;
|
|
4340
4310
|
readonly inputs: readonly [{
|
|
@@ -4426,7 +4396,7 @@ declare class Router__factory {
|
|
|
4426
4396
|
}, {
|
|
4427
4397
|
readonly inputs: readonly [{
|
|
4428
4398
|
readonly internalType: "bytes32";
|
|
4429
|
-
readonly name: "
|
|
4399
|
+
readonly name: "referenceId";
|
|
4430
4400
|
readonly type: "bytes32";
|
|
4431
4401
|
}, {
|
|
4432
4402
|
readonly internalType: "bytes";
|
|
@@ -4490,7 +4460,7 @@ declare class Router__factory {
|
|
|
4490
4460
|
}, {
|
|
4491
4461
|
readonly inputs: readonly [{
|
|
4492
4462
|
readonly internalType: "bytes32";
|
|
4493
|
-
readonly name: "
|
|
4463
|
+
readonly name: "referenceId";
|
|
4494
4464
|
readonly type: "bytes32";
|
|
4495
4465
|
}];
|
|
4496
4466
|
readonly name: "getAffiliateInfo";
|
|
@@ -4539,7 +4509,7 @@ declare class Router__factory {
|
|
|
4539
4509
|
}, {
|
|
4540
4510
|
readonly inputs: readonly [{
|
|
4541
4511
|
readonly internalType: "bytes32";
|
|
4542
|
-
readonly name: "
|
|
4512
|
+
readonly name: "referenceId";
|
|
4543
4513
|
readonly type: "bytes32";
|
|
4544
4514
|
}];
|
|
4545
4515
|
readonly name: "getCurrentStage";
|
|
@@ -4557,7 +4527,7 @@ declare class Router__factory {
|
|
|
4557
4527
|
}, {
|
|
4558
4528
|
readonly inputs: readonly [{
|
|
4559
4529
|
readonly internalType: "bytes32";
|
|
4560
|
-
readonly name: "
|
|
4530
|
+
readonly name: "referenceId";
|
|
4561
4531
|
readonly type: "bytes32";
|
|
4562
4532
|
}];
|
|
4563
4533
|
readonly name: "getFailureInfo";
|
|
@@ -4580,7 +4550,7 @@ declare class Router__factory {
|
|
|
4580
4550
|
}, {
|
|
4581
4551
|
readonly inputs: readonly [{
|
|
4582
4552
|
readonly internalType: "bytes32";
|
|
4583
|
-
readonly name: "
|
|
4553
|
+
readonly name: "referenceId";
|
|
4584
4554
|
readonly type: "bytes32";
|
|
4585
4555
|
}];
|
|
4586
4556
|
readonly name: "getFeeDetails";
|
|
@@ -4637,7 +4607,7 @@ declare class Router__factory {
|
|
|
4637
4607
|
}, {
|
|
4638
4608
|
readonly inputs: readonly [{
|
|
4639
4609
|
readonly internalType: "bytes32";
|
|
4640
|
-
readonly name: "
|
|
4610
|
+
readonly name: "referenceId";
|
|
4641
4611
|
readonly type: "bytes32";
|
|
4642
4612
|
}];
|
|
4643
4613
|
readonly name: "getHandlerOf";
|
|
@@ -4673,7 +4643,7 @@ declare class Router__factory {
|
|
|
4673
4643
|
}, {
|
|
4674
4644
|
readonly inputs: readonly [{
|
|
4675
4645
|
readonly internalType: "bytes32";
|
|
4676
|
-
readonly name: "
|
|
4646
|
+
readonly name: "referenceId";
|
|
4677
4647
|
readonly type: "bytes32";
|
|
4678
4648
|
}];
|
|
4679
4649
|
readonly name: "getPMMSelection";
|
|
@@ -4770,7 +4740,7 @@ declare class Router__factory {
|
|
|
4770
4740
|
}, {
|
|
4771
4741
|
readonly inputs: readonly [{
|
|
4772
4742
|
readonly internalType: "bytes32";
|
|
4773
|
-
readonly name: "
|
|
4743
|
+
readonly name: "referenceId";
|
|
4774
4744
|
readonly type: "bytes32";
|
|
4775
4745
|
}];
|
|
4776
4746
|
readonly name: "getRefundPresign";
|
|
@@ -4819,7 +4789,7 @@ declare class Router__factory {
|
|
|
4819
4789
|
}, {
|
|
4820
4790
|
readonly inputs: readonly [{
|
|
4821
4791
|
readonly internalType: "bytes32";
|
|
4822
|
-
readonly name: "
|
|
4792
|
+
readonly name: "referenceId";
|
|
4823
4793
|
readonly type: "bytes32";
|
|
4824
4794
|
}];
|
|
4825
4795
|
readonly name: "getSettlementPresigns";
|
|
@@ -4846,7 +4816,7 @@ declare class Router__factory {
|
|
|
4846
4816
|
}, {
|
|
4847
4817
|
readonly inputs: readonly [{
|
|
4848
4818
|
readonly internalType: "bytes32";
|
|
4849
|
-
readonly name: "
|
|
4819
|
+
readonly name: "referenceId";
|
|
4850
4820
|
readonly type: "bytes32";
|
|
4851
4821
|
}];
|
|
4852
4822
|
readonly name: "getSolver";
|
|
@@ -4860,7 +4830,7 @@ declare class Router__factory {
|
|
|
4860
4830
|
}, {
|
|
4861
4831
|
readonly inputs: readonly [{
|
|
4862
4832
|
readonly internalType: "bytes32";
|
|
4863
|
-
readonly name: "
|
|
4833
|
+
readonly name: "referenceId";
|
|
4864
4834
|
readonly type: "bytes32";
|
|
4865
4835
|
}];
|
|
4866
4836
|
readonly name: "getTradeData";
|
|
@@ -4913,7 +4883,7 @@ declare class Router__factory {
|
|
|
4913
4883
|
}, {
|
|
4914
4884
|
readonly inputs: readonly [{
|
|
4915
4885
|
readonly internalType: "bytes32";
|
|
4916
|
-
readonly name: "
|
|
4886
|
+
readonly name: "referenceId";
|
|
4917
4887
|
readonly type: "bytes32";
|
|
4918
4888
|
}];
|
|
4919
4889
|
readonly name: "getTradeFinalization";
|
|
@@ -4976,7 +4946,7 @@ declare class Router__factory {
|
|
|
4976
4946
|
}, {
|
|
4977
4947
|
readonly inputs: readonly [{
|
|
4978
4948
|
readonly internalType: "bytes32";
|
|
4979
|
-
readonly name: "
|
|
4949
|
+
readonly name: "referenceId";
|
|
4980
4950
|
readonly type: "bytes32";
|
|
4981
4951
|
}, {
|
|
4982
4952
|
readonly internalType: "bytes";
|
|
@@ -4994,7 +4964,7 @@ declare class Router__factory {
|
|
|
4994
4964
|
}, {
|
|
4995
4965
|
readonly inputs: readonly [{
|
|
4996
4966
|
readonly internalType: "bytes32";
|
|
4997
|
-
readonly name: "
|
|
4967
|
+
readonly name: "referenceId";
|
|
4998
4968
|
readonly type: "bytes32";
|
|
4999
4969
|
}, {
|
|
5000
4970
|
readonly internalType: "bytes";
|
|
@@ -5097,7 +5067,7 @@ declare class Router__factory {
|
|
|
5097
5067
|
}, {
|
|
5098
5068
|
readonly inputs: readonly [{
|
|
5099
5069
|
readonly internalType: "bytes32";
|
|
5100
|
-
readonly name: "
|
|
5070
|
+
readonly name: "depositId";
|
|
5101
5071
|
readonly type: "bytes32";
|
|
5102
5072
|
}, {
|
|
5103
5073
|
readonly components: readonly [{
|
package/dist/index.d.ts
CHANGED
|
@@ -1562,7 +1562,7 @@ declare namespace ITypes$1 {
|
|
|
1562
1562
|
}
|
|
1563
1563
|
interface RouterInterface extends Interface {
|
|
1564
1564
|
getFunction(nameOrSignature: "SIGNER" | "abort" | "bundlePayment" | "confirmDeposit" | "confirmPayment" | "confirmPresign" | "confirmSettlement" | "getAffiliateInfo" | "getCurrentEpoch" | "getCurrentStage" | "getFailureInfo" | "getFeeDetails" | "getHandler" | "getHandlerOf" | "getHistoryCount" | "getPMMSelection" | "getPendingTrades" | "getPendingTradesCount" | "getRefundPresign" | "getRegisteredHandlers" | "getSettlementPresigns" | "getSolver" | "getTradeData" | "getTradeFinalization" | "management" | "migrate" | "refund" | "report" | "selectPMM" | "setManagement" | "setRoute" | "submitDeposit" | "submitTrade"): FunctionFragment;
|
|
1565
|
-
getEvent(nameOrSignatureOrTopic: "Abort" | "ConfirmDeposit" | "ConfirmPayment" | "ConfirmPresign" | "ConfirmRefund" | "ConfirmSettlement" | "MakePayment" | "ReportFailure" | "SelectPMM" | "SubmitDeposit" | "SubmitTradeInfo" | "
|
|
1565
|
+
getEvent(nameOrSignatureOrTopic: "Abort" | "ConfirmDeposit" | "ConfirmPayment" | "ConfirmPresign" | "ConfirmRefund" | "ConfirmSettlement" | "MakePayment" | "ReportFailure" | "SelectPMM" | "SubmitDeposit" | "SubmitTradeInfo" | "UpdatedRoute"): EventFragment;
|
|
1566
1566
|
encodeFunctionData(functionFragment: "SIGNER", values?: undefined): string;
|
|
1567
1567
|
encodeFunctionData(functionFragment: "abort", values: [BytesLike, ITypes$1.RFQInfoStruct]): string;
|
|
1568
1568
|
encodeFunctionData(functionFragment: "bundlePayment", values: [ITypes$1.BundlePaymentStruct]): string;
|
|
@@ -1649,11 +1649,11 @@ declare namespace AbortEvent {
|
|
|
1649
1649
|
type LogDescription = TypedLogDescription<Event>;
|
|
1650
1650
|
}
|
|
1651
1651
|
declare namespace ConfirmDepositEvent {
|
|
1652
|
-
type InputTuple = [mpc: AddressLike,
|
|
1653
|
-
type OutputTuple = [mpc: string,
|
|
1652
|
+
type InputTuple = [mpc: AddressLike, depositId: BytesLike];
|
|
1653
|
+
type OutputTuple = [mpc: string, depositId: string];
|
|
1654
1654
|
interface OutputObject {
|
|
1655
1655
|
mpc: string;
|
|
1656
|
-
|
|
1656
|
+
depositId: string;
|
|
1657
1657
|
}
|
|
1658
1658
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1659
1659
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -1750,11 +1750,11 @@ declare namespace SelectPMMEvent {
|
|
|
1750
1750
|
type LogDescription = TypedLogDescription<Event>;
|
|
1751
1751
|
}
|
|
1752
1752
|
declare namespace SubmitDepositEvent {
|
|
1753
|
-
type InputTuple = [solver: AddressLike,
|
|
1754
|
-
type OutputTuple = [solver: string,
|
|
1753
|
+
type InputTuple = [solver: AddressLike, depositId: BytesLike];
|
|
1754
|
+
type OutputTuple = [solver: string, depositId: string];
|
|
1755
1755
|
interface OutputObject {
|
|
1756
1756
|
solver: string;
|
|
1757
|
-
|
|
1757
|
+
depositId: string;
|
|
1758
1758
|
}
|
|
1759
1759
|
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1760
1760
|
type Filter = TypedDeferredTopicFilter<Event>;
|
|
@@ -1773,18 +1773,6 @@ declare namespace SubmitTradeInfoEvent {
|
|
|
1773
1773
|
type Log = TypedEventLog<Event>;
|
|
1774
1774
|
type LogDescription = TypedLogDescription<Event>;
|
|
1775
1775
|
}
|
|
1776
|
-
declare namespace UpdatedManagementEvent {
|
|
1777
|
-
type InputTuple = [operator: AddressLike, newManagement: AddressLike];
|
|
1778
|
-
type OutputTuple = [operator: string, newManagement: string];
|
|
1779
|
-
interface OutputObject {
|
|
1780
|
-
operator: string;
|
|
1781
|
-
newManagement: string;
|
|
1782
|
-
}
|
|
1783
|
-
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
1784
|
-
type Filter = TypedDeferredTopicFilter<Event>;
|
|
1785
|
-
type Log = TypedEventLog<Event>;
|
|
1786
|
-
type LogDescription = TypedLogDescription<Event>;
|
|
1787
|
-
}
|
|
1788
1776
|
declare namespace UpdatedRouteEvent {
|
|
1789
1777
|
type InputTuple = [
|
|
1790
1778
|
handler: AddressLike,
|
|
@@ -1832,7 +1820,7 @@ interface Router extends BaseContract {
|
|
|
1832
1820
|
void
|
|
1833
1821
|
], "nonpayable">;
|
|
1834
1822
|
confirmDeposit: TypedContractMethod<[
|
|
1835
|
-
|
|
1823
|
+
referenceId: BytesLike,
|
|
1836
1824
|
signature: BytesLike,
|
|
1837
1825
|
depositFromList: BytesLike[]
|
|
1838
1826
|
], [
|
|
@@ -1858,7 +1846,7 @@ interface Router extends BaseContract {
|
|
|
1858
1846
|
void
|
|
1859
1847
|
], "nonpayable">;
|
|
1860
1848
|
getAffiliateInfo: TypedContractMethod<[
|
|
1861
|
-
|
|
1849
|
+
referenceId: BytesLike
|
|
1862
1850
|
], [
|
|
1863
1851
|
ITypes$1.AffiliateStructOutput
|
|
1864
1852
|
], "view">;
|
|
@@ -1868,7 +1856,7 @@ interface Router extends BaseContract {
|
|
|
1868
1856
|
[bigint, bigint, bigint]
|
|
1869
1857
|
], "view">;
|
|
1870
1858
|
getCurrentStage: TypedContractMethod<[
|
|
1871
|
-
|
|
1859
|
+
referenceId: BytesLike
|
|
1872
1860
|
], [
|
|
1873
1861
|
[bigint, string] & {
|
|
1874
1862
|
stage: bigint;
|
|
@@ -1876,12 +1864,12 @@ interface Router extends BaseContract {
|
|
|
1876
1864
|
}
|
|
1877
1865
|
], "view">;
|
|
1878
1866
|
getFailureInfo: TypedContractMethod<[
|
|
1879
|
-
|
|
1867
|
+
referenceId: BytesLike
|
|
1880
1868
|
], [
|
|
1881
1869
|
ITypes$1.FailureDetailsStructOutput
|
|
1882
1870
|
], "view">;
|
|
1883
1871
|
getFeeDetails: TypedContractMethod<[
|
|
1884
|
-
|
|
1872
|
+
referenceId: BytesLike
|
|
1885
1873
|
], [
|
|
1886
1874
|
ITypes$1.FeeDetailsStructOutput
|
|
1887
1875
|
], "view">;
|
|
@@ -1895,7 +1883,7 @@ interface Router extends BaseContract {
|
|
|
1895
1883
|
}
|
|
1896
1884
|
], "view">;
|
|
1897
1885
|
getHandlerOf: TypedContractMethod<[
|
|
1898
|
-
|
|
1886
|
+
referenceId: BytesLike
|
|
1899
1887
|
], [
|
|
1900
1888
|
[string, string] & {
|
|
1901
1889
|
handler: string;
|
|
@@ -1909,7 +1897,7 @@ interface Router extends BaseContract {
|
|
|
1909
1897
|
bigint
|
|
1910
1898
|
], "view">;
|
|
1911
1899
|
getPMMSelection: TypedContractMethod<[
|
|
1912
|
-
|
|
1900
|
+
referenceId: BytesLike
|
|
1913
1901
|
], [
|
|
1914
1902
|
ITypes$1.PMMSelectionStructOutput
|
|
1915
1903
|
], "view">;
|
|
@@ -1928,7 +1916,7 @@ interface Router extends BaseContract {
|
|
|
1928
1916
|
bigint
|
|
1929
1917
|
], "view">;
|
|
1930
1918
|
getRefundPresign: TypedContractMethod<[
|
|
1931
|
-
|
|
1919
|
+
referenceId: BytesLike
|
|
1932
1920
|
], [
|
|
1933
1921
|
ITypes$1.RefundPresignStructOutput
|
|
1934
1922
|
], "view">;
|
|
@@ -1941,18 +1929,18 @@ interface Router extends BaseContract {
|
|
|
1941
1929
|
string[]
|
|
1942
1930
|
], "view">;
|
|
1943
1931
|
getSettlementPresigns: TypedContractMethod<[
|
|
1944
|
-
|
|
1932
|
+
referenceId: BytesLike
|
|
1945
1933
|
], [
|
|
1946
1934
|
ITypes$1.SettlementPresignStructOutput[]
|
|
1947
1935
|
], "view">;
|
|
1948
|
-
getSolver: TypedContractMethod<[
|
|
1936
|
+
getSolver: TypedContractMethod<[referenceId: BytesLike], [string], "view">;
|
|
1949
1937
|
getTradeData: TypedContractMethod<[
|
|
1950
|
-
|
|
1938
|
+
referenceId: BytesLike
|
|
1951
1939
|
], [
|
|
1952
1940
|
ITypes$1.TradeDataStructOutput
|
|
1953
1941
|
], "view">;
|
|
1954
1942
|
getTradeFinalization: TypedContractMethod<[
|
|
1955
|
-
|
|
1943
|
+
referenceId: BytesLike
|
|
1956
1944
|
], [
|
|
1957
1945
|
ITypes$1.TradeFinalizationStructOutput
|
|
1958
1946
|
], "view">;
|
|
@@ -1964,14 +1952,14 @@ interface Router extends BaseContract {
|
|
|
1964
1952
|
void
|
|
1965
1953
|
], "nonpayable">;
|
|
1966
1954
|
refund: TypedContractMethod<[
|
|
1967
|
-
|
|
1955
|
+
referenceId: BytesLike,
|
|
1968
1956
|
refundTxId: BytesLike,
|
|
1969
1957
|
signature: BytesLike
|
|
1970
1958
|
], [
|
|
1971
1959
|
void
|
|
1972
1960
|
], "nonpayable">;
|
|
1973
1961
|
report: TypedContractMethod<[
|
|
1974
|
-
|
|
1962
|
+
referenceId: BytesLike,
|
|
1975
1963
|
msgError: BytesLike,
|
|
1976
1964
|
referenceInfo: BytesLike,
|
|
1977
1965
|
signature: BytesLike
|
|
@@ -1997,7 +1985,7 @@ interface Router extends BaseContract {
|
|
|
1997
1985
|
void
|
|
1998
1986
|
], "nonpayable">;
|
|
1999
1987
|
submitDeposit: TypedContractMethod<[
|
|
2000
|
-
|
|
1988
|
+
depositId: BytesLike,
|
|
2001
1989
|
tradeData: ITypes$1.TradeDataStruct,
|
|
2002
1990
|
refundPresign: ITypes$1.RefundPresignStruct
|
|
2003
1991
|
], [
|
|
@@ -2026,7 +2014,7 @@ interface Router extends BaseContract {
|
|
|
2026
2014
|
void
|
|
2027
2015
|
], "nonpayable">;
|
|
2028
2016
|
getFunction(nameOrSignature: "confirmDeposit"): TypedContractMethod<[
|
|
2029
|
-
|
|
2017
|
+
referenceId: BytesLike,
|
|
2030
2018
|
signature: BytesLike,
|
|
2031
2019
|
depositFromList: BytesLike[]
|
|
2032
2020
|
], [
|
|
@@ -2052,7 +2040,7 @@ interface Router extends BaseContract {
|
|
|
2052
2040
|
void
|
|
2053
2041
|
], "nonpayable">;
|
|
2054
2042
|
getFunction(nameOrSignature: "getAffiliateInfo"): TypedContractMethod<[
|
|
2055
|
-
|
|
2043
|
+
referenceId: BytesLike
|
|
2056
2044
|
], [
|
|
2057
2045
|
ITypes$1.AffiliateStructOutput
|
|
2058
2046
|
], "view">;
|
|
@@ -2062,7 +2050,7 @@ interface Router extends BaseContract {
|
|
|
2062
2050
|
[bigint, bigint, bigint]
|
|
2063
2051
|
], "view">;
|
|
2064
2052
|
getFunction(nameOrSignature: "getCurrentStage"): TypedContractMethod<[
|
|
2065
|
-
|
|
2053
|
+
referenceId: BytesLike
|
|
2066
2054
|
], [
|
|
2067
2055
|
[bigint, string] & {
|
|
2068
2056
|
stage: bigint;
|
|
@@ -2070,12 +2058,12 @@ interface Router extends BaseContract {
|
|
|
2070
2058
|
}
|
|
2071
2059
|
], "view">;
|
|
2072
2060
|
getFunction(nameOrSignature: "getFailureInfo"): TypedContractMethod<[
|
|
2073
|
-
|
|
2061
|
+
referenceId: BytesLike
|
|
2074
2062
|
], [
|
|
2075
2063
|
ITypes$1.FailureDetailsStructOutput
|
|
2076
2064
|
], "view">;
|
|
2077
2065
|
getFunction(nameOrSignature: "getFeeDetails"): TypedContractMethod<[
|
|
2078
|
-
|
|
2066
|
+
referenceId: BytesLike
|
|
2079
2067
|
], [
|
|
2080
2068
|
ITypes$1.FeeDetailsStructOutput
|
|
2081
2069
|
], "view">;
|
|
@@ -2089,7 +2077,7 @@ interface Router extends BaseContract {
|
|
|
2089
2077
|
}
|
|
2090
2078
|
], "view">;
|
|
2091
2079
|
getFunction(nameOrSignature: "getHandlerOf"): TypedContractMethod<[
|
|
2092
|
-
|
|
2080
|
+
referenceId: BytesLike
|
|
2093
2081
|
], [
|
|
2094
2082
|
[string, string] & {
|
|
2095
2083
|
handler: string;
|
|
@@ -2103,7 +2091,7 @@ interface Router extends BaseContract {
|
|
|
2103
2091
|
bigint
|
|
2104
2092
|
], "view">;
|
|
2105
2093
|
getFunction(nameOrSignature: "getPMMSelection"): TypedContractMethod<[
|
|
2106
|
-
|
|
2094
|
+
referenceId: BytesLike
|
|
2107
2095
|
], [
|
|
2108
2096
|
ITypes$1.PMMSelectionStructOutput
|
|
2109
2097
|
], "view">;
|
|
@@ -2122,7 +2110,7 @@ interface Router extends BaseContract {
|
|
|
2122
2110
|
bigint
|
|
2123
2111
|
], "view">;
|
|
2124
2112
|
getFunction(nameOrSignature: "getRefundPresign"): TypedContractMethod<[
|
|
2125
|
-
|
|
2113
|
+
referenceId: BytesLike
|
|
2126
2114
|
], [
|
|
2127
2115
|
ITypes$1.RefundPresignStructOutput
|
|
2128
2116
|
], "view">;
|
|
@@ -2135,18 +2123,18 @@ interface Router extends BaseContract {
|
|
|
2135
2123
|
string[]
|
|
2136
2124
|
], "view">;
|
|
2137
2125
|
getFunction(nameOrSignature: "getSettlementPresigns"): TypedContractMethod<[
|
|
2138
|
-
|
|
2126
|
+
referenceId: BytesLike
|
|
2139
2127
|
], [
|
|
2140
2128
|
ITypes$1.SettlementPresignStructOutput[]
|
|
2141
2129
|
], "view">;
|
|
2142
|
-
getFunction(nameOrSignature: "getSolver"): TypedContractMethod<[
|
|
2130
|
+
getFunction(nameOrSignature: "getSolver"): TypedContractMethod<[referenceId: BytesLike], [string], "view">;
|
|
2143
2131
|
getFunction(nameOrSignature: "getTradeData"): TypedContractMethod<[
|
|
2144
|
-
|
|
2132
|
+
referenceId: BytesLike
|
|
2145
2133
|
], [
|
|
2146
2134
|
ITypes$1.TradeDataStructOutput
|
|
2147
2135
|
], "view">;
|
|
2148
2136
|
getFunction(nameOrSignature: "getTradeFinalization"): TypedContractMethod<[
|
|
2149
|
-
|
|
2137
|
+
referenceId: BytesLike
|
|
2150
2138
|
], [
|
|
2151
2139
|
ITypes$1.TradeFinalizationStructOutput
|
|
2152
2140
|
], "view">;
|
|
@@ -2158,14 +2146,14 @@ interface Router extends BaseContract {
|
|
|
2158
2146
|
void
|
|
2159
2147
|
], "nonpayable">;
|
|
2160
2148
|
getFunction(nameOrSignature: "refund"): TypedContractMethod<[
|
|
2161
|
-
|
|
2149
|
+
referenceId: BytesLike,
|
|
2162
2150
|
refundTxId: BytesLike,
|
|
2163
2151
|
signature: BytesLike
|
|
2164
2152
|
], [
|
|
2165
2153
|
void
|
|
2166
2154
|
], "nonpayable">;
|
|
2167
2155
|
getFunction(nameOrSignature: "report"): TypedContractMethod<[
|
|
2168
|
-
|
|
2156
|
+
referenceId: BytesLike,
|
|
2169
2157
|
msgError: BytesLike,
|
|
2170
2158
|
referenceInfo: BytesLike,
|
|
2171
2159
|
signature: BytesLike
|
|
@@ -2187,7 +2175,7 @@ interface Router extends BaseContract {
|
|
|
2187
2175
|
void
|
|
2188
2176
|
], "nonpayable">;
|
|
2189
2177
|
getFunction(nameOrSignature: "submitDeposit"): TypedContractMethod<[
|
|
2190
|
-
|
|
2178
|
+
depositId: BytesLike,
|
|
2191
2179
|
tradeData: ITypes$1.TradeDataStruct,
|
|
2192
2180
|
refundPresign: ITypes$1.RefundPresignStruct
|
|
2193
2181
|
], [
|
|
@@ -2213,7 +2201,6 @@ interface Router extends BaseContract {
|
|
|
2213
2201
|
getEvent(key: "SelectPMM"): TypedContractEvent<SelectPMMEvent.InputTuple, SelectPMMEvent.OutputTuple, SelectPMMEvent.OutputObject>;
|
|
2214
2202
|
getEvent(key: "SubmitDeposit"): TypedContractEvent<SubmitDepositEvent.InputTuple, SubmitDepositEvent.OutputTuple, SubmitDepositEvent.OutputObject>;
|
|
2215
2203
|
getEvent(key: "SubmitTradeInfo"): TypedContractEvent<SubmitTradeInfoEvent.InputTuple, SubmitTradeInfoEvent.OutputTuple, SubmitTradeInfoEvent.OutputObject>;
|
|
2216
|
-
getEvent(key: "UpdatedManagement"): TypedContractEvent<UpdatedManagementEvent.InputTuple, UpdatedManagementEvent.OutputTuple, UpdatedManagementEvent.OutputObject>;
|
|
2217
2204
|
getEvent(key: "UpdatedRoute"): TypedContractEvent<UpdatedRouteEvent.InputTuple, UpdatedRouteEvent.OutputTuple, UpdatedRouteEvent.OutputObject>;
|
|
2218
2205
|
filters: {
|
|
2219
2206
|
"Abort(address,bytes32)": TypedContractEvent<AbortEvent.InputTuple, AbortEvent.OutputTuple, AbortEvent.OutputObject>;
|
|
@@ -2238,8 +2225,6 @@ interface Router extends BaseContract {
|
|
|
2238
2225
|
SubmitDeposit: TypedContractEvent<SubmitDepositEvent.InputTuple, SubmitDepositEvent.OutputTuple, SubmitDepositEvent.OutputObject>;
|
|
2239
2226
|
"SubmitTradeInfo(address,bytes32)": TypedContractEvent<SubmitTradeInfoEvent.InputTuple, SubmitTradeInfoEvent.OutputTuple, SubmitTradeInfoEvent.OutputObject>;
|
|
2240
2227
|
SubmitTradeInfo: TypedContractEvent<SubmitTradeInfoEvent.InputTuple, SubmitTradeInfoEvent.OutputTuple, SubmitTradeInfoEvent.OutputObject>;
|
|
2241
|
-
"UpdatedManagement(address,address)": TypedContractEvent<UpdatedManagementEvent.InputTuple, UpdatedManagementEvent.OutputTuple, UpdatedManagementEvent.OutputObject>;
|
|
2242
|
-
UpdatedManagement: TypedContractEvent<UpdatedManagementEvent.InputTuple, UpdatedManagementEvent.OutputTuple, UpdatedManagementEvent.OutputObject>;
|
|
2243
2228
|
"UpdatedRoute(address,bytes,bytes)": TypedContractEvent<UpdatedRouteEvent.InputTuple, UpdatedRouteEvent.OutputTuple, UpdatedRouteEvent.OutputObject>;
|
|
2244
2229
|
UpdatedRoute: TypedContractEvent<UpdatedRouteEvent.InputTuple, UpdatedRouteEvent.OutputTuple, UpdatedRouteEvent.OutputObject>;
|
|
2245
2230
|
};
|
|
@@ -4175,7 +4160,7 @@ declare class Router__factory {
|
|
|
4175
4160
|
}, {
|
|
4176
4161
|
readonly indexed: true;
|
|
4177
4162
|
readonly internalType: "bytes32";
|
|
4178
|
-
readonly name: "
|
|
4163
|
+
readonly name: "depositId";
|
|
4179
4164
|
readonly type: "bytes32";
|
|
4180
4165
|
}];
|
|
4181
4166
|
readonly name: "ConfirmDeposit";
|
|
@@ -4300,7 +4285,7 @@ declare class Router__factory {
|
|
|
4300
4285
|
}, {
|
|
4301
4286
|
readonly indexed: true;
|
|
4302
4287
|
readonly internalType: "bytes32";
|
|
4303
|
-
readonly name: "
|
|
4288
|
+
readonly name: "depositId";
|
|
4304
4289
|
readonly type: "bytes32";
|
|
4305
4290
|
}];
|
|
4306
4291
|
readonly name: "SubmitDeposit";
|
|
@@ -4320,21 +4305,6 @@ declare class Router__factory {
|
|
|
4320
4305
|
}];
|
|
4321
4306
|
readonly name: "SubmitTradeInfo";
|
|
4322
4307
|
readonly type: "event";
|
|
4323
|
-
}, {
|
|
4324
|
-
readonly anonymous: false;
|
|
4325
|
-
readonly inputs: readonly [{
|
|
4326
|
-
readonly indexed: true;
|
|
4327
|
-
readonly internalType: "address";
|
|
4328
|
-
readonly name: "operator";
|
|
4329
|
-
readonly type: "address";
|
|
4330
|
-
}, {
|
|
4331
|
-
readonly indexed: true;
|
|
4332
|
-
readonly internalType: "address";
|
|
4333
|
-
readonly name: "newManagement";
|
|
4334
|
-
readonly type: "address";
|
|
4335
|
-
}];
|
|
4336
|
-
readonly name: "UpdatedManagement";
|
|
4337
|
-
readonly type: "event";
|
|
4338
4308
|
}, {
|
|
4339
4309
|
readonly anonymous: false;
|
|
4340
4310
|
readonly inputs: readonly [{
|
|
@@ -4426,7 +4396,7 @@ declare class Router__factory {
|
|
|
4426
4396
|
}, {
|
|
4427
4397
|
readonly inputs: readonly [{
|
|
4428
4398
|
readonly internalType: "bytes32";
|
|
4429
|
-
readonly name: "
|
|
4399
|
+
readonly name: "referenceId";
|
|
4430
4400
|
readonly type: "bytes32";
|
|
4431
4401
|
}, {
|
|
4432
4402
|
readonly internalType: "bytes";
|
|
@@ -4490,7 +4460,7 @@ declare class Router__factory {
|
|
|
4490
4460
|
}, {
|
|
4491
4461
|
readonly inputs: readonly [{
|
|
4492
4462
|
readonly internalType: "bytes32";
|
|
4493
|
-
readonly name: "
|
|
4463
|
+
readonly name: "referenceId";
|
|
4494
4464
|
readonly type: "bytes32";
|
|
4495
4465
|
}];
|
|
4496
4466
|
readonly name: "getAffiliateInfo";
|
|
@@ -4539,7 +4509,7 @@ declare class Router__factory {
|
|
|
4539
4509
|
}, {
|
|
4540
4510
|
readonly inputs: readonly [{
|
|
4541
4511
|
readonly internalType: "bytes32";
|
|
4542
|
-
readonly name: "
|
|
4512
|
+
readonly name: "referenceId";
|
|
4543
4513
|
readonly type: "bytes32";
|
|
4544
4514
|
}];
|
|
4545
4515
|
readonly name: "getCurrentStage";
|
|
@@ -4557,7 +4527,7 @@ declare class Router__factory {
|
|
|
4557
4527
|
}, {
|
|
4558
4528
|
readonly inputs: readonly [{
|
|
4559
4529
|
readonly internalType: "bytes32";
|
|
4560
|
-
readonly name: "
|
|
4530
|
+
readonly name: "referenceId";
|
|
4561
4531
|
readonly type: "bytes32";
|
|
4562
4532
|
}];
|
|
4563
4533
|
readonly name: "getFailureInfo";
|
|
@@ -4580,7 +4550,7 @@ declare class Router__factory {
|
|
|
4580
4550
|
}, {
|
|
4581
4551
|
readonly inputs: readonly [{
|
|
4582
4552
|
readonly internalType: "bytes32";
|
|
4583
|
-
readonly name: "
|
|
4553
|
+
readonly name: "referenceId";
|
|
4584
4554
|
readonly type: "bytes32";
|
|
4585
4555
|
}];
|
|
4586
4556
|
readonly name: "getFeeDetails";
|
|
@@ -4637,7 +4607,7 @@ declare class Router__factory {
|
|
|
4637
4607
|
}, {
|
|
4638
4608
|
readonly inputs: readonly [{
|
|
4639
4609
|
readonly internalType: "bytes32";
|
|
4640
|
-
readonly name: "
|
|
4610
|
+
readonly name: "referenceId";
|
|
4641
4611
|
readonly type: "bytes32";
|
|
4642
4612
|
}];
|
|
4643
4613
|
readonly name: "getHandlerOf";
|
|
@@ -4673,7 +4643,7 @@ declare class Router__factory {
|
|
|
4673
4643
|
}, {
|
|
4674
4644
|
readonly inputs: readonly [{
|
|
4675
4645
|
readonly internalType: "bytes32";
|
|
4676
|
-
readonly name: "
|
|
4646
|
+
readonly name: "referenceId";
|
|
4677
4647
|
readonly type: "bytes32";
|
|
4678
4648
|
}];
|
|
4679
4649
|
readonly name: "getPMMSelection";
|
|
@@ -4770,7 +4740,7 @@ declare class Router__factory {
|
|
|
4770
4740
|
}, {
|
|
4771
4741
|
readonly inputs: readonly [{
|
|
4772
4742
|
readonly internalType: "bytes32";
|
|
4773
|
-
readonly name: "
|
|
4743
|
+
readonly name: "referenceId";
|
|
4774
4744
|
readonly type: "bytes32";
|
|
4775
4745
|
}];
|
|
4776
4746
|
readonly name: "getRefundPresign";
|
|
@@ -4819,7 +4789,7 @@ declare class Router__factory {
|
|
|
4819
4789
|
}, {
|
|
4820
4790
|
readonly inputs: readonly [{
|
|
4821
4791
|
readonly internalType: "bytes32";
|
|
4822
|
-
readonly name: "
|
|
4792
|
+
readonly name: "referenceId";
|
|
4823
4793
|
readonly type: "bytes32";
|
|
4824
4794
|
}];
|
|
4825
4795
|
readonly name: "getSettlementPresigns";
|
|
@@ -4846,7 +4816,7 @@ declare class Router__factory {
|
|
|
4846
4816
|
}, {
|
|
4847
4817
|
readonly inputs: readonly [{
|
|
4848
4818
|
readonly internalType: "bytes32";
|
|
4849
|
-
readonly name: "
|
|
4819
|
+
readonly name: "referenceId";
|
|
4850
4820
|
readonly type: "bytes32";
|
|
4851
4821
|
}];
|
|
4852
4822
|
readonly name: "getSolver";
|
|
@@ -4860,7 +4830,7 @@ declare class Router__factory {
|
|
|
4860
4830
|
}, {
|
|
4861
4831
|
readonly inputs: readonly [{
|
|
4862
4832
|
readonly internalType: "bytes32";
|
|
4863
|
-
readonly name: "
|
|
4833
|
+
readonly name: "referenceId";
|
|
4864
4834
|
readonly type: "bytes32";
|
|
4865
4835
|
}];
|
|
4866
4836
|
readonly name: "getTradeData";
|
|
@@ -4913,7 +4883,7 @@ declare class Router__factory {
|
|
|
4913
4883
|
}, {
|
|
4914
4884
|
readonly inputs: readonly [{
|
|
4915
4885
|
readonly internalType: "bytes32";
|
|
4916
|
-
readonly name: "
|
|
4886
|
+
readonly name: "referenceId";
|
|
4917
4887
|
readonly type: "bytes32";
|
|
4918
4888
|
}];
|
|
4919
4889
|
readonly name: "getTradeFinalization";
|
|
@@ -4976,7 +4946,7 @@ declare class Router__factory {
|
|
|
4976
4946
|
}, {
|
|
4977
4947
|
readonly inputs: readonly [{
|
|
4978
4948
|
readonly internalType: "bytes32";
|
|
4979
|
-
readonly name: "
|
|
4949
|
+
readonly name: "referenceId";
|
|
4980
4950
|
readonly type: "bytes32";
|
|
4981
4951
|
}, {
|
|
4982
4952
|
readonly internalType: "bytes";
|
|
@@ -4994,7 +4964,7 @@ declare class Router__factory {
|
|
|
4994
4964
|
}, {
|
|
4995
4965
|
readonly inputs: readonly [{
|
|
4996
4966
|
readonly internalType: "bytes32";
|
|
4997
|
-
readonly name: "
|
|
4967
|
+
readonly name: "referenceId";
|
|
4998
4968
|
readonly type: "bytes32";
|
|
4999
4969
|
}, {
|
|
5000
4970
|
readonly internalType: "bytes";
|
|
@@ -5097,7 +5067,7 @@ declare class Router__factory {
|
|
|
5097
5067
|
}, {
|
|
5098
5068
|
readonly inputs: readonly [{
|
|
5099
5069
|
readonly internalType: "bytes32";
|
|
5100
|
-
readonly name: "
|
|
5070
|
+
readonly name: "depositId";
|
|
5101
5071
|
readonly type: "bytes32";
|
|
5102
5072
|
}, {
|
|
5103
5073
|
readonly components: readonly [{
|
package/dist/index.js
CHANGED
|
@@ -75,7 +75,7 @@ var environments = {
|
|
|
75
75
|
dev: {
|
|
76
76
|
backendUrl: "https://api-dev.bitdex.xyz",
|
|
77
77
|
rpcUrl: "https://rpc-bitfi-p00c4t1rul.t.conduit.xyz",
|
|
78
|
-
routerAddress: "
|
|
78
|
+
routerAddress: "0x5008a47004b1cACD0Fd7CE689973F6b0CB345802",
|
|
79
79
|
protocolFetcherProxyAddress: "0x0267Fc04eE866b31907dEe123aBdCdB67d03B297",
|
|
80
80
|
paymentAddressMap: {
|
|
81
81
|
ethereum_sepolia: "0x1d8b58438D5Ccc8Fcb4b738C89078f7b4168C9c0"
|
|
@@ -2462,7 +2462,7 @@ var _abi4 = [
|
|
|
2462
2462
|
{
|
|
2463
2463
|
indexed: true,
|
|
2464
2464
|
internalType: "bytes32",
|
|
2465
|
-
name: "
|
|
2465
|
+
name: "depositId",
|
|
2466
2466
|
type: "bytes32"
|
|
2467
2467
|
}
|
|
2468
2468
|
],
|
|
@@ -2620,7 +2620,7 @@ var _abi4 = [
|
|
|
2620
2620
|
{
|
|
2621
2621
|
indexed: true,
|
|
2622
2622
|
internalType: "bytes32",
|
|
2623
|
-
name: "
|
|
2623
|
+
name: "depositId",
|
|
2624
2624
|
type: "bytes32"
|
|
2625
2625
|
}
|
|
2626
2626
|
],
|
|
@@ -2646,25 +2646,6 @@ var _abi4 = [
|
|
|
2646
2646
|
name: "SubmitTradeInfo",
|
|
2647
2647
|
type: "event"
|
|
2648
2648
|
},
|
|
2649
|
-
{
|
|
2650
|
-
anonymous: false,
|
|
2651
|
-
inputs: [
|
|
2652
|
-
{
|
|
2653
|
-
indexed: true,
|
|
2654
|
-
internalType: "address",
|
|
2655
|
-
name: "operator",
|
|
2656
|
-
type: "address"
|
|
2657
|
-
},
|
|
2658
|
-
{
|
|
2659
|
-
indexed: true,
|
|
2660
|
-
internalType: "address",
|
|
2661
|
-
name: "newManagement",
|
|
2662
|
-
type: "address"
|
|
2663
|
-
}
|
|
2664
|
-
],
|
|
2665
|
-
name: "UpdatedManagement",
|
|
2666
|
-
type: "event"
|
|
2667
|
-
},
|
|
2668
2649
|
{
|
|
2669
2650
|
anonymous: false,
|
|
2670
2651
|
inputs: [
|
|
@@ -2782,7 +2763,7 @@ var _abi4 = [
|
|
|
2782
2763
|
inputs: [
|
|
2783
2764
|
{
|
|
2784
2765
|
internalType: "bytes32",
|
|
2785
|
-
name: "
|
|
2766
|
+
name: "referenceId",
|
|
2786
2767
|
type: "bytes32"
|
|
2787
2768
|
},
|
|
2788
2769
|
{
|
|
@@ -2864,7 +2845,7 @@ var _abi4 = [
|
|
|
2864
2845
|
inputs: [
|
|
2865
2846
|
{
|
|
2866
2847
|
internalType: "bytes32",
|
|
2867
|
-
name: "
|
|
2848
|
+
name: "referenceId",
|
|
2868
2849
|
type: "bytes32"
|
|
2869
2850
|
}
|
|
2870
2851
|
],
|
|
@@ -2929,7 +2910,7 @@ var _abi4 = [
|
|
|
2929
2910
|
inputs: [
|
|
2930
2911
|
{
|
|
2931
2912
|
internalType: "bytes32",
|
|
2932
|
-
name: "
|
|
2913
|
+
name: "referenceId",
|
|
2933
2914
|
type: "bytes32"
|
|
2934
2915
|
}
|
|
2935
2916
|
],
|
|
@@ -2953,7 +2934,7 @@ var _abi4 = [
|
|
|
2953
2934
|
inputs: [
|
|
2954
2935
|
{
|
|
2955
2936
|
internalType: "bytes32",
|
|
2956
|
-
name: "
|
|
2937
|
+
name: "referenceId",
|
|
2957
2938
|
type: "bytes32"
|
|
2958
2939
|
}
|
|
2959
2940
|
],
|
|
@@ -2984,7 +2965,7 @@ var _abi4 = [
|
|
|
2984
2965
|
inputs: [
|
|
2985
2966
|
{
|
|
2986
2967
|
internalType: "bytes32",
|
|
2987
|
-
name: "
|
|
2968
|
+
name: "referenceId",
|
|
2988
2969
|
type: "bytes32"
|
|
2989
2970
|
}
|
|
2990
2971
|
],
|
|
@@ -3059,7 +3040,7 @@ var _abi4 = [
|
|
|
3059
3040
|
inputs: [
|
|
3060
3041
|
{
|
|
3061
3042
|
internalType: "bytes32",
|
|
3062
|
-
name: "
|
|
3043
|
+
name: "referenceId",
|
|
3063
3044
|
type: "bytes32"
|
|
3064
3045
|
}
|
|
3065
3046
|
],
|
|
@@ -3107,7 +3088,7 @@ var _abi4 = [
|
|
|
3107
3088
|
inputs: [
|
|
3108
3089
|
{
|
|
3109
3090
|
internalType: "bytes32",
|
|
3110
|
-
name: "
|
|
3091
|
+
name: "referenceId",
|
|
3111
3092
|
type: "bytes32"
|
|
3112
3093
|
}
|
|
3113
3094
|
],
|
|
@@ -3235,7 +3216,7 @@ var _abi4 = [
|
|
|
3235
3216
|
inputs: [
|
|
3236
3217
|
{
|
|
3237
3218
|
internalType: "bytes32",
|
|
3238
|
-
name: "
|
|
3219
|
+
name: "referenceId",
|
|
3239
3220
|
type: "bytes32"
|
|
3240
3221
|
}
|
|
3241
3222
|
],
|
|
@@ -3300,7 +3281,7 @@ var _abi4 = [
|
|
|
3300
3281
|
inputs: [
|
|
3301
3282
|
{
|
|
3302
3283
|
internalType: "bytes32",
|
|
3303
|
-
name: "
|
|
3284
|
+
name: "referenceId",
|
|
3304
3285
|
type: "bytes32"
|
|
3305
3286
|
}
|
|
3306
3287
|
],
|
|
@@ -3336,7 +3317,7 @@ var _abi4 = [
|
|
|
3336
3317
|
inputs: [
|
|
3337
3318
|
{
|
|
3338
3319
|
internalType: "bytes32",
|
|
3339
|
-
name: "
|
|
3320
|
+
name: "referenceId",
|
|
3340
3321
|
type: "bytes32"
|
|
3341
3322
|
}
|
|
3342
3323
|
],
|
|
@@ -3355,7 +3336,7 @@ var _abi4 = [
|
|
|
3355
3336
|
inputs: [
|
|
3356
3337
|
{
|
|
3357
3338
|
internalType: "bytes32",
|
|
3358
|
-
name: "
|
|
3339
|
+
name: "referenceId",
|
|
3359
3340
|
type: "bytes32"
|
|
3360
3341
|
}
|
|
3361
3342
|
],
|
|
@@ -3425,7 +3406,7 @@ var _abi4 = [
|
|
|
3425
3406
|
inputs: [
|
|
3426
3407
|
{
|
|
3427
3408
|
internalType: "bytes32",
|
|
3428
|
-
name: "
|
|
3409
|
+
name: "referenceId",
|
|
3429
3410
|
type: "bytes32"
|
|
3430
3411
|
}
|
|
3431
3412
|
],
|
|
@@ -3507,7 +3488,7 @@ var _abi4 = [
|
|
|
3507
3488
|
inputs: [
|
|
3508
3489
|
{
|
|
3509
3490
|
internalType: "bytes32",
|
|
3510
|
-
name: "
|
|
3491
|
+
name: "referenceId",
|
|
3511
3492
|
type: "bytes32"
|
|
3512
3493
|
},
|
|
3513
3494
|
{
|
|
@@ -3530,7 +3511,7 @@ var _abi4 = [
|
|
|
3530
3511
|
inputs: [
|
|
3531
3512
|
{
|
|
3532
3513
|
internalType: "bytes32",
|
|
3533
|
-
name: "
|
|
3514
|
+
name: "referenceId",
|
|
3534
3515
|
type: "bytes32"
|
|
3535
3516
|
},
|
|
3536
3517
|
{
|
|
@@ -3663,7 +3644,7 @@ var _abi4 = [
|
|
|
3663
3644
|
inputs: [
|
|
3664
3645
|
{
|
|
3665
3646
|
internalType: "bytes32",
|
|
3666
|
-
name: "
|
|
3647
|
+
name: "depositId",
|
|
3667
3648
|
type: "bytes32"
|
|
3668
3649
|
},
|
|
3669
3650
|
{
|
package/dist/index.mjs
CHANGED
|
@@ -9,7 +9,7 @@ var environments = {
|
|
|
9
9
|
dev: {
|
|
10
10
|
backendUrl: "https://api-dev.bitdex.xyz",
|
|
11
11
|
rpcUrl: "https://rpc-bitfi-p00c4t1rul.t.conduit.xyz",
|
|
12
|
-
routerAddress: "
|
|
12
|
+
routerAddress: "0x5008a47004b1cACD0Fd7CE689973F6b0CB345802",
|
|
13
13
|
protocolFetcherProxyAddress: "0x0267Fc04eE866b31907dEe123aBdCdB67d03B297",
|
|
14
14
|
paymentAddressMap: {
|
|
15
15
|
ethereum_sepolia: "0x1d8b58438D5Ccc8Fcb4b738C89078f7b4168C9c0"
|
|
@@ -2396,7 +2396,7 @@ var _abi4 = [
|
|
|
2396
2396
|
{
|
|
2397
2397
|
indexed: true,
|
|
2398
2398
|
internalType: "bytes32",
|
|
2399
|
-
name: "
|
|
2399
|
+
name: "depositId",
|
|
2400
2400
|
type: "bytes32"
|
|
2401
2401
|
}
|
|
2402
2402
|
],
|
|
@@ -2554,7 +2554,7 @@ var _abi4 = [
|
|
|
2554
2554
|
{
|
|
2555
2555
|
indexed: true,
|
|
2556
2556
|
internalType: "bytes32",
|
|
2557
|
-
name: "
|
|
2557
|
+
name: "depositId",
|
|
2558
2558
|
type: "bytes32"
|
|
2559
2559
|
}
|
|
2560
2560
|
],
|
|
@@ -2580,25 +2580,6 @@ var _abi4 = [
|
|
|
2580
2580
|
name: "SubmitTradeInfo",
|
|
2581
2581
|
type: "event"
|
|
2582
2582
|
},
|
|
2583
|
-
{
|
|
2584
|
-
anonymous: false,
|
|
2585
|
-
inputs: [
|
|
2586
|
-
{
|
|
2587
|
-
indexed: true,
|
|
2588
|
-
internalType: "address",
|
|
2589
|
-
name: "operator",
|
|
2590
|
-
type: "address"
|
|
2591
|
-
},
|
|
2592
|
-
{
|
|
2593
|
-
indexed: true,
|
|
2594
|
-
internalType: "address",
|
|
2595
|
-
name: "newManagement",
|
|
2596
|
-
type: "address"
|
|
2597
|
-
}
|
|
2598
|
-
],
|
|
2599
|
-
name: "UpdatedManagement",
|
|
2600
|
-
type: "event"
|
|
2601
|
-
},
|
|
2602
2583
|
{
|
|
2603
2584
|
anonymous: false,
|
|
2604
2585
|
inputs: [
|
|
@@ -2716,7 +2697,7 @@ var _abi4 = [
|
|
|
2716
2697
|
inputs: [
|
|
2717
2698
|
{
|
|
2718
2699
|
internalType: "bytes32",
|
|
2719
|
-
name: "
|
|
2700
|
+
name: "referenceId",
|
|
2720
2701
|
type: "bytes32"
|
|
2721
2702
|
},
|
|
2722
2703
|
{
|
|
@@ -2798,7 +2779,7 @@ var _abi4 = [
|
|
|
2798
2779
|
inputs: [
|
|
2799
2780
|
{
|
|
2800
2781
|
internalType: "bytes32",
|
|
2801
|
-
name: "
|
|
2782
|
+
name: "referenceId",
|
|
2802
2783
|
type: "bytes32"
|
|
2803
2784
|
}
|
|
2804
2785
|
],
|
|
@@ -2863,7 +2844,7 @@ var _abi4 = [
|
|
|
2863
2844
|
inputs: [
|
|
2864
2845
|
{
|
|
2865
2846
|
internalType: "bytes32",
|
|
2866
|
-
name: "
|
|
2847
|
+
name: "referenceId",
|
|
2867
2848
|
type: "bytes32"
|
|
2868
2849
|
}
|
|
2869
2850
|
],
|
|
@@ -2887,7 +2868,7 @@ var _abi4 = [
|
|
|
2887
2868
|
inputs: [
|
|
2888
2869
|
{
|
|
2889
2870
|
internalType: "bytes32",
|
|
2890
|
-
name: "
|
|
2871
|
+
name: "referenceId",
|
|
2891
2872
|
type: "bytes32"
|
|
2892
2873
|
}
|
|
2893
2874
|
],
|
|
@@ -2918,7 +2899,7 @@ var _abi4 = [
|
|
|
2918
2899
|
inputs: [
|
|
2919
2900
|
{
|
|
2920
2901
|
internalType: "bytes32",
|
|
2921
|
-
name: "
|
|
2902
|
+
name: "referenceId",
|
|
2922
2903
|
type: "bytes32"
|
|
2923
2904
|
}
|
|
2924
2905
|
],
|
|
@@ -2993,7 +2974,7 @@ var _abi4 = [
|
|
|
2993
2974
|
inputs: [
|
|
2994
2975
|
{
|
|
2995
2976
|
internalType: "bytes32",
|
|
2996
|
-
name: "
|
|
2977
|
+
name: "referenceId",
|
|
2997
2978
|
type: "bytes32"
|
|
2998
2979
|
}
|
|
2999
2980
|
],
|
|
@@ -3041,7 +3022,7 @@ var _abi4 = [
|
|
|
3041
3022
|
inputs: [
|
|
3042
3023
|
{
|
|
3043
3024
|
internalType: "bytes32",
|
|
3044
|
-
name: "
|
|
3025
|
+
name: "referenceId",
|
|
3045
3026
|
type: "bytes32"
|
|
3046
3027
|
}
|
|
3047
3028
|
],
|
|
@@ -3169,7 +3150,7 @@ var _abi4 = [
|
|
|
3169
3150
|
inputs: [
|
|
3170
3151
|
{
|
|
3171
3152
|
internalType: "bytes32",
|
|
3172
|
-
name: "
|
|
3153
|
+
name: "referenceId",
|
|
3173
3154
|
type: "bytes32"
|
|
3174
3155
|
}
|
|
3175
3156
|
],
|
|
@@ -3234,7 +3215,7 @@ var _abi4 = [
|
|
|
3234
3215
|
inputs: [
|
|
3235
3216
|
{
|
|
3236
3217
|
internalType: "bytes32",
|
|
3237
|
-
name: "
|
|
3218
|
+
name: "referenceId",
|
|
3238
3219
|
type: "bytes32"
|
|
3239
3220
|
}
|
|
3240
3221
|
],
|
|
@@ -3270,7 +3251,7 @@ var _abi4 = [
|
|
|
3270
3251
|
inputs: [
|
|
3271
3252
|
{
|
|
3272
3253
|
internalType: "bytes32",
|
|
3273
|
-
name: "
|
|
3254
|
+
name: "referenceId",
|
|
3274
3255
|
type: "bytes32"
|
|
3275
3256
|
}
|
|
3276
3257
|
],
|
|
@@ -3289,7 +3270,7 @@ var _abi4 = [
|
|
|
3289
3270
|
inputs: [
|
|
3290
3271
|
{
|
|
3291
3272
|
internalType: "bytes32",
|
|
3292
|
-
name: "
|
|
3273
|
+
name: "referenceId",
|
|
3293
3274
|
type: "bytes32"
|
|
3294
3275
|
}
|
|
3295
3276
|
],
|
|
@@ -3359,7 +3340,7 @@ var _abi4 = [
|
|
|
3359
3340
|
inputs: [
|
|
3360
3341
|
{
|
|
3361
3342
|
internalType: "bytes32",
|
|
3362
|
-
name: "
|
|
3343
|
+
name: "referenceId",
|
|
3363
3344
|
type: "bytes32"
|
|
3364
3345
|
}
|
|
3365
3346
|
],
|
|
@@ -3441,7 +3422,7 @@ var _abi4 = [
|
|
|
3441
3422
|
inputs: [
|
|
3442
3423
|
{
|
|
3443
3424
|
internalType: "bytes32",
|
|
3444
|
-
name: "
|
|
3425
|
+
name: "referenceId",
|
|
3445
3426
|
type: "bytes32"
|
|
3446
3427
|
},
|
|
3447
3428
|
{
|
|
@@ -3464,7 +3445,7 @@ var _abi4 = [
|
|
|
3464
3445
|
inputs: [
|
|
3465
3446
|
{
|
|
3466
3447
|
internalType: "bytes32",
|
|
3467
|
-
name: "
|
|
3448
|
+
name: "referenceId",
|
|
3468
3449
|
type: "bytes32"
|
|
3469
3450
|
},
|
|
3470
3451
|
{
|
|
@@ -3597,7 +3578,7 @@ var _abi4 = [
|
|
|
3597
3578
|
inputs: [
|
|
3598
3579
|
{
|
|
3599
3580
|
internalType: "bytes32",
|
|
3600
|
-
name: "
|
|
3581
|
+
name: "depositId",
|
|
3601
3582
|
type: "bytes32"
|
|
3602
3583
|
},
|
|
3603
3584
|
{
|