aftermath-ts-sdk 1.2.64 → 1.2.65
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/general/dynamicGas/dynamicGas.d.ts +34 -0
- package/dist/general/dynamicGas/dynamicGas.d.ts.map +1 -1
- package/dist/general/dynamicGas/dynamicGas.js +34 -0
- package/dist/general/dynamicGas/dynamicGasTypes.d.ts +25 -0
- package/dist/general/dynamicGas/dynamicGasTypes.d.ts.map +1 -1
- package/dist/general/prices/prices.d.ts +73 -0
- package/dist/general/prices/prices.d.ts.map +1 -1
- package/dist/general/prices/prices.js +73 -0
- package/dist/general/providers/aftermath.d.ts +106 -25
- package/dist/general/providers/aftermath.d.ts.map +1 -1
- package/dist/general/providers/aftermath.js +108 -27
- package/dist/general/providers/aftermathApi.d.ts +127 -8
- package/dist/general/providers/aftermathApi.d.ts.map +1 -1
- package/dist/general/providers/aftermathApi.js +132 -12
- package/dist/general/types/castingTypes.d.ts +0 -7
- package/dist/general/types/castingTypes.d.ts.map +1 -1
- package/dist/general/types/castingTypes.js +6 -0
- package/dist/general/types/generalTypes.d.ts +228 -7
- package/dist/general/types/generalTypes.d.ts.map +1 -1
- package/dist/general/types/suiTypes.d.ts +0 -16
- package/dist/general/types/suiTypes.d.ts.map +1 -1
- package/dist/general/types/suiTypes.js +3 -25
- package/dist/general/utils/casting.d.ts +159 -3
- package/dist/general/utils/casting.d.ts.map +1 -1
- package/dist/general/utils/casting.js +162 -16
- package/dist/general/utils/fixedUtils.d.ts +89 -2
- package/dist/general/utils/fixedUtils.d.ts.map +1 -1
- package/dist/general/utils/fixedUtils.js +81 -4
- package/dist/general/utils/helpers.d.ts +320 -9
- package/dist/general/utils/helpers.d.ts.map +1 -1
- package/dist/general/utils/helpers.js +350 -89
- package/dist/general/utils/iFixedUtils.d.ts +64 -0
- package/dist/general/utils/iFixedUtils.d.ts.map +1 -1
- package/dist/general/utils/iFixedUtils.js +64 -0
- package/dist/general/wallet/wallet.d.ts +75 -0
- package/dist/general/wallet/wallet.d.ts.map +1 -1
- package/dist/general/wallet/wallet.js +75 -5
- package/dist/packages/auth/auth.d.ts +113 -0
- package/dist/packages/auth/auth.d.ts.map +1 -1
- package/dist/packages/auth/auth.js +129 -15
- package/dist/packages/auth/authTypes.d.ts +66 -0
- package/dist/packages/auth/authTypes.d.ts.map +1 -1
- package/dist/packages/coin/coin.d.ts +250 -0
- package/dist/packages/coin/coin.d.ts.map +1 -1
- package/dist/packages/coin/coin.js +238 -14
- package/dist/packages/coin/coinTypes.d.ts +93 -0
- package/dist/packages/coin/coinTypes.d.ts.map +1 -1
- package/dist/packages/dca/dca.d.ts +124 -35
- package/dist/packages/dca/dca.d.ts.map +1 -1
- package/dist/packages/dca/dca.js +127 -37
- package/dist/packages/dca/dcaTypes.d.ts +213 -28
- package/dist/packages/dca/dcaTypes.d.ts.map +1 -1
- package/dist/packages/farms/farms.d.ts +184 -1
- package/dist/packages/farms/farms.d.ts.map +1 -1
- package/dist/packages/farms/farms.js +185 -11
- package/dist/packages/farms/farmsStakedPosition.d.ts +140 -6
- package/dist/packages/farms/farmsStakedPosition.d.ts.map +1 -1
- package/dist/packages/farms/farmsStakedPosition.js +189 -144
- package/dist/packages/farms/farmsStakingPool.d.ts +161 -1
- package/dist/packages/farms/farmsStakingPool.d.ts.map +1 -1
- package/dist/packages/farms/farmsStakingPool.js +176 -70
- package/dist/packages/farms/farmsTypes.d.ts +283 -2
- package/dist/packages/farms/farmsTypes.d.ts.map +1 -1
- package/dist/packages/farms/farmsTypes.js +18 -0
- package/dist/packages/limitOrders/limitOrders.d.ts +108 -21
- package/dist/packages/limitOrders/limitOrders.d.ts.map +1 -1
- package/dist/packages/limitOrders/limitOrders.js +110 -22
- package/dist/packages/limitOrders/limitOrdersTypes.d.ts +142 -0
- package/dist/packages/limitOrders/limitOrdersTypes.d.ts.map +1 -1
- package/dist/packages/multisig/multisig.d.ts +33 -4
- package/dist/packages/multisig/multisig.d.ts.map +1 -1
- package/dist/packages/multisig/multisig.js +33 -4
- package/dist/packages/multisig/multisigTypes.d.ts +17 -0
- package/dist/packages/multisig/multisigTypes.d.ts.map +1 -1
- package/dist/packages/perpetuals/api/perpetualsApi.d.ts.map +1 -1
- package/dist/packages/pools/pool.d.ts +327 -85
- package/dist/packages/pools/pool.d.ts.map +1 -1
- package/dist/packages/pools/pool.js +333 -91
- package/dist/packages/pools/pools.d.ts +299 -37
- package/dist/packages/pools/pools.d.ts.map +1 -1
- package/dist/packages/pools/pools.js +306 -52
- package/dist/packages/pools/poolsTypes.d.ts +267 -2
- package/dist/packages/pools/poolsTypes.d.ts.map +1 -1
- package/dist/packages/referralVault/referralVault.d.ts +37 -0
- package/dist/packages/referralVault/referralVault.d.ts.map +1 -1
- package/dist/packages/referralVault/referralVault.js +37 -0
- package/dist/packages/router/router.d.ts +213 -17
- package/dist/packages/router/router.d.ts.map +1 -1
- package/dist/packages/router/router.js +214 -18
- package/dist/packages/router/routerTypes.d.ts +198 -14
- package/dist/packages/router/routerTypes.d.ts.map +1 -1
- package/dist/packages/staking/staking.d.ts +301 -43
- package/dist/packages/staking/staking.d.ts.map +1 -1
- package/dist/packages/staking/staking.js +308 -51
- package/dist/packages/staking/stakingTypes.d.ts +426 -6
- package/dist/packages/staking/stakingTypes.d.ts.map +1 -1
- package/dist/packages/staking/stakingTypes.js +19 -0
- package/dist/packages/sui/sui.d.ts +39 -0
- package/dist/packages/sui/sui.d.ts.map +1 -1
- package/dist/packages/sui/sui.js +39 -0
- package/dist/packages/userData/userData.d.ts +66 -12
- package/dist/packages/userData/userData.d.ts.map +1 -1
- package/dist/packages/userData/userData.js +66 -12
- package/dist/packages/userData/userDataTypes.d.ts +19 -0
- package/dist/packages/userData/userDataTypes.d.ts.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +0 -1
- package/package.json +1 -1
- package/dist/general/historicalData/historicalData.d.ts +0 -15
- package/dist/general/historicalData/historicalData.d.ts.map +0 -1
- package/dist/general/historicalData/historicalData.js +0 -45
- package/dist/general/historicalData/historicalDataTypes.d.ts +0 -10
- package/dist/general/historicalData/historicalDataTypes.d.ts.map +0 -1
- package/dist/general/historicalData/historicalDataTypes.js +0 -2
|
@@ -2,132 +2,316 @@ import { AnyObjectType, Balance, Percentage, Event, Slippage, ObjectId, SuiAddre
|
|
|
2
2
|
import { CoinType, ServiceCoinData } from "../coin/coinTypes";
|
|
3
3
|
import { TransactionObjectArgument } from "@mysten/sui/transactions";
|
|
4
4
|
import { TransactionObjectArgument as TransactionObjectArgumentV0 } from "@mysten/sui.js/transactions";
|
|
5
|
+
/**
|
|
6
|
+
* A unique identifier, typically used to track items or route segments.
|
|
7
|
+
*/
|
|
5
8
|
export type UniqueId = string;
|
|
6
9
|
/**
|
|
7
|
-
*
|
|
8
|
-
*
|
|
10
|
+
* **Deprecated**. Please use `ExternalFee` instead.
|
|
11
|
+
*
|
|
12
|
+
* Fee info for third party packages wanting to fee route transactions.
|
|
9
13
|
*/
|
|
10
14
|
export type RouterExternalFee = ExternalFee;
|
|
15
|
+
/**
|
|
16
|
+
* All possible DEX protocols that the `Router` can use to swap coins.
|
|
17
|
+
*/
|
|
11
18
|
export type RouterProtocolName = "Aftermath" | "BlueMove" | "Cetus" | "DeepBook" | "DeepBookV3" | "DoubleUpPump" | "FlowX" | "FlowXClmm" | "HopFun" | "Kriya" | "KriyaClmm" | "Magma" | "Metastable" | "MovePump" | "Obric" | "SuiSwap" | "Turbos" | "SpringSui" | "Steamm" | "SuiAi" | "Bluefin" | "TurbosFun";
|
|
19
|
+
/**
|
|
20
|
+
* Represents a complete trade route object. Includes all relevant information
|
|
21
|
+
* for executing a trade from `coinIn` to `coinOut` through one or more protocols.
|
|
22
|
+
*/
|
|
12
23
|
export type RouterCompleteTradeRoute = RouterTradeInfo & {
|
|
24
|
+
/**
|
|
25
|
+
* An array of sub-routes, each representing a path or series of swaps.
|
|
26
|
+
*/
|
|
13
27
|
routes: RouterTradeRoute[];
|
|
28
|
+
/**
|
|
29
|
+
* The total trade fee percentage across all routes.
|
|
30
|
+
* @remarks 0.01 = 1%
|
|
31
|
+
*/
|
|
14
32
|
netTradeFeePercentage: Percentage;
|
|
33
|
+
/**
|
|
34
|
+
* Optional referrer address, if using a referral mechanism.
|
|
35
|
+
*/
|
|
15
36
|
referrer?: SuiAddress;
|
|
37
|
+
/**
|
|
38
|
+
* Optional external fee information, if a third party is collecting fees.
|
|
39
|
+
*/
|
|
16
40
|
externalFee?: ExternalFee;
|
|
41
|
+
/**
|
|
42
|
+
* Slippage tolerance for the trade, expressed as a decimal (0.01 = 1%).
|
|
43
|
+
*/
|
|
17
44
|
slippage?: Slippage;
|
|
18
45
|
};
|
|
19
46
|
/**
|
|
20
|
-
*
|
|
47
|
+
* **Deprecated**. Please use `RouterCompleteTradeRoute` instead.
|
|
48
|
+
*
|
|
49
|
+
* Represents a complete trade route object, including fee info.
|
|
21
50
|
*/
|
|
22
51
|
export type RouterCompleteTradeRouteWithFee = RouterCompleteTradeRoute;
|
|
52
|
+
/**
|
|
53
|
+
* Represents a sub-route of a complete trade, describing the portion
|
|
54
|
+
* and the paths used. Each sub-route may involve one or more specific pools.
|
|
55
|
+
*/
|
|
23
56
|
export type RouterTradeRoute = RouterTradeInfo & {
|
|
57
|
+
/**
|
|
58
|
+
* An array of paths that this route will take to execute the trade.
|
|
59
|
+
*/
|
|
24
60
|
paths: RouterTradePath[];
|
|
61
|
+
/**
|
|
62
|
+
* The portion of the total trade allocated to this route, expressed as an IFixed value.
|
|
63
|
+
*/
|
|
25
64
|
portion: IFixed;
|
|
26
65
|
};
|
|
66
|
+
/**
|
|
67
|
+
* Represents an individual path within a route. Typically corresponds to
|
|
68
|
+
* a specific DEX pool and the swap details in that pool.
|
|
69
|
+
*/
|
|
27
70
|
export type RouterTradePath = RouterTradeInfo & {
|
|
71
|
+
/**
|
|
72
|
+
* The name of the DEX protocol used for this path (e.g., "Cetus").
|
|
73
|
+
*/
|
|
28
74
|
protocolName: RouterProtocolName;
|
|
75
|
+
/**
|
|
76
|
+
* The pool ID (object on-chain) where the swap is performed.
|
|
77
|
+
*/
|
|
29
78
|
poolId: ObjectId;
|
|
79
|
+
/**
|
|
80
|
+
* Additional pool metadata, which can vary by DEX protocol.
|
|
81
|
+
*/
|
|
30
82
|
poolMetadata: any;
|
|
31
83
|
};
|
|
84
|
+
/**
|
|
85
|
+
* Base interface shared by routes and paths, describing the coin in/out details and spot price.
|
|
86
|
+
*/
|
|
32
87
|
export interface RouterTradeInfo {
|
|
88
|
+
/**
|
|
89
|
+
* Input coin details, including type, amount, and any trade fee.
|
|
90
|
+
*/
|
|
33
91
|
coinIn: RouterTradeCoin;
|
|
92
|
+
/**
|
|
93
|
+
* Output coin details, including type, amount, and any trade fee.
|
|
94
|
+
*/
|
|
34
95
|
coinOut: RouterTradeCoin;
|
|
96
|
+
/**
|
|
97
|
+
* The spot price used in this route/path for calculating output from input.
|
|
98
|
+
*/
|
|
35
99
|
spotPrice: number;
|
|
36
100
|
}
|
|
101
|
+
/**
|
|
102
|
+
* Represents a coin and the associated amount and trade fee for a route or path.
|
|
103
|
+
*/
|
|
37
104
|
export interface RouterTradeCoin {
|
|
105
|
+
/**
|
|
106
|
+
* The coin type used in a route or path.
|
|
107
|
+
*/
|
|
38
108
|
type: CoinType;
|
|
109
|
+
/**
|
|
110
|
+
* The amount of the coin, typically expressed as the smallest unit (bigint).
|
|
111
|
+
*/
|
|
39
112
|
amount: Balance;
|
|
113
|
+
/**
|
|
114
|
+
* The trade fee paid in this coin, expressed as a bigint.
|
|
115
|
+
*/
|
|
40
116
|
tradeFee: Balance;
|
|
41
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* Event that occurs when a user executes a trade route via the router.
|
|
120
|
+
*/
|
|
42
121
|
export interface RouterTradeEvent extends Event {
|
|
122
|
+
/**
|
|
123
|
+
* The Sui address of the trader.
|
|
124
|
+
*/
|
|
43
125
|
trader: SuiAddress;
|
|
126
|
+
/**
|
|
127
|
+
* The coin type input by the trader.
|
|
128
|
+
*/
|
|
44
129
|
coinInType: AnyObjectType;
|
|
130
|
+
/**
|
|
131
|
+
* The amount of coin input by the trader.
|
|
132
|
+
*/
|
|
45
133
|
coinInAmount: Balance;
|
|
134
|
+
/**
|
|
135
|
+
* The coin type output to the trader.
|
|
136
|
+
*/
|
|
46
137
|
coinOutType: AnyObjectType;
|
|
138
|
+
/**
|
|
139
|
+
* The amount of coin output to the trader.
|
|
140
|
+
*/
|
|
47
141
|
coinOutAmount: Balance;
|
|
48
142
|
}
|
|
143
|
+
/**
|
|
144
|
+
* Basic body for partial router route construction, specifying coin types
|
|
145
|
+
* and optional third-party fee or referral info.
|
|
146
|
+
*/
|
|
49
147
|
export type ApiRouterPartialCompleteTradeRouteBody = {
|
|
50
148
|
/**
|
|
51
|
-
*
|
|
149
|
+
* The coin type that the user wants to swap out.
|
|
52
150
|
*/
|
|
53
151
|
coinInType: CoinType;
|
|
54
152
|
/**
|
|
55
|
-
*
|
|
153
|
+
* The coin type that the user wants to receive.
|
|
56
154
|
*/
|
|
57
155
|
coinOutType: CoinType;
|
|
58
156
|
/**
|
|
59
|
-
*
|
|
157
|
+
* An optional referrer address for the route creator.
|
|
60
158
|
*/
|
|
61
159
|
referrer?: SuiAddress;
|
|
62
160
|
/**
|
|
63
|
-
*
|
|
161
|
+
* Optional third-party fee details.
|
|
64
162
|
*/
|
|
65
163
|
externalFee?: ExternalFee;
|
|
66
164
|
} & ({
|
|
165
|
+
/**
|
|
166
|
+
* Optionally exclude certain protocols from routing.
|
|
167
|
+
*/
|
|
67
168
|
protocolBlacklist?: RouterProtocolName[];
|
|
68
169
|
} | {
|
|
170
|
+
/**
|
|
171
|
+
* Optionally include only certain protocols in routing.
|
|
172
|
+
*/
|
|
69
173
|
protocolWhitelist?: RouterProtocolName[];
|
|
70
174
|
});
|
|
71
175
|
/**
|
|
72
|
-
*
|
|
176
|
+
* Full body for router route construction. Either `coinInAmount` or `coinOutAmount`
|
|
177
|
+
* must be specified, not both. If `coinOutAmount` is given, `slippage` is required.
|
|
73
178
|
*/
|
|
74
179
|
export type ApiRouterCompleteTradeRouteBody = ApiRouterPartialCompleteTradeRouteBody & ({
|
|
75
180
|
/**
|
|
76
|
-
*
|
|
181
|
+
* The amount of coin that the user wants to swap out.
|
|
77
182
|
*/
|
|
78
183
|
coinInAmount: Balance;
|
|
79
184
|
} | {
|
|
80
185
|
/**
|
|
81
|
-
*
|
|
186
|
+
* The target output amount that the user wants to receive.
|
|
82
187
|
*/
|
|
83
188
|
coinOutAmount: Balance;
|
|
189
|
+
/**
|
|
190
|
+
* The user’s slippage tolerance (e.g., 0.01 = 1%).
|
|
191
|
+
*/
|
|
84
192
|
slippage: Slippage;
|
|
85
193
|
});
|
|
86
194
|
/**
|
|
87
|
-
*
|
|
195
|
+
* Represents the information needed to create a transaction for a complete trade route.
|
|
88
196
|
*/
|
|
89
197
|
export interface ApiRouterTransactionForCompleteTradeRouteBody {
|
|
90
198
|
/**
|
|
91
|
-
*
|
|
199
|
+
* The Sui address initiating the trade.
|
|
92
200
|
*/
|
|
93
201
|
walletAddress: SuiAddress;
|
|
94
202
|
/**
|
|
95
|
-
*
|
|
203
|
+
* The complete route object, typically returned by the route construction API.
|
|
96
204
|
*/
|
|
97
205
|
completeRoute: RouterCompleteTradeRoute;
|
|
98
206
|
/**
|
|
99
|
-
*
|
|
207
|
+
* The allowable slippage tolerance for the entire route.
|
|
100
208
|
*/
|
|
101
209
|
slippage: Slippage;
|
|
210
|
+
/**
|
|
211
|
+
* If `true`, indicates that the transaction fees may be sponsored by a third party.
|
|
212
|
+
*/
|
|
102
213
|
isSponsoredTx?: boolean;
|
|
214
|
+
/**
|
|
215
|
+
* If specified, the traded output coins will be sent to this address.
|
|
216
|
+
*/
|
|
103
217
|
customRecipient?: SuiAddress;
|
|
104
218
|
}
|
|
219
|
+
/**
|
|
220
|
+
* Extended body that includes a serialized transaction for building a new
|
|
221
|
+
* transaction with a trade route appended.
|
|
222
|
+
*/
|
|
105
223
|
export type ApiRouterAddTransactionForCompleteTradeRouteBody = ApiRouterTransactionForCompleteTradeRouteBody & {
|
|
224
|
+
/**
|
|
225
|
+
* The already-serialized transaction to which the router instructions will be added.
|
|
226
|
+
*/
|
|
106
227
|
serializedTx: SerializedTransaction;
|
|
228
|
+
/**
|
|
229
|
+
* Optional coin input ID if you are managing coin objects yourself.
|
|
230
|
+
*/
|
|
107
231
|
coinInId?: TransactionObjectArgument;
|
|
108
232
|
};
|
|
233
|
+
/**
|
|
234
|
+
* **Legacy version** of the above. Uses older transaction format.
|
|
235
|
+
*/
|
|
109
236
|
export type ApiRouterAddTransactionForCompleteTradeRouteV0Body = ApiRouterTransactionForCompleteTradeRouteBody & {
|
|
237
|
+
/**
|
|
238
|
+
* The already-serialized transaction (legacy format) to which the router instructions will be added.
|
|
239
|
+
*/
|
|
110
240
|
serializedTx: SerializedTransaction;
|
|
241
|
+
/**
|
|
242
|
+
* Optional coin input ID if you are managing coin objects yourself (legacy version).
|
|
243
|
+
*/
|
|
111
244
|
coinInId?: TransactionObjectArgumentV0;
|
|
112
245
|
};
|
|
246
|
+
/**
|
|
247
|
+
* The response returned after adding a trade route to an existing transaction.
|
|
248
|
+
*/
|
|
113
249
|
export interface ApiRouterAddTransactionForCompleteTradeRouteResponse {
|
|
250
|
+
/**
|
|
251
|
+
* The updated serialized transaction.
|
|
252
|
+
*/
|
|
114
253
|
tx: SerializedTransaction;
|
|
254
|
+
/**
|
|
255
|
+
* A reference to the output coin after the swap. May be undefined if not applicable.
|
|
256
|
+
*/
|
|
115
257
|
coinOutId: TransactionObjectArgument | undefined;
|
|
116
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* **Legacy version** of the above. Uses older transaction format.
|
|
261
|
+
*/
|
|
117
262
|
export interface ApiRouterAddTransactionForCompleteTradeRouteV0Response {
|
|
263
|
+
/**
|
|
264
|
+
* The updated serialized transaction (legacy format).
|
|
265
|
+
*/
|
|
118
266
|
tx: SerializedTransaction;
|
|
267
|
+
/**
|
|
268
|
+
* A reference to the output coin after the swap (legacy version). May be undefined if not applicable.
|
|
269
|
+
*/
|
|
119
270
|
coinOutId: TransactionObjectArgumentV0 | undefined;
|
|
120
271
|
}
|
|
272
|
+
/**
|
|
273
|
+
* Body type used for retrieving router trade events for a particular user
|
|
274
|
+
* from the indexer, with pagination.
|
|
275
|
+
*/
|
|
121
276
|
export type ApiRouterTradeEventsBody = ApiIndexerEventsBody & {
|
|
277
|
+
/**
|
|
278
|
+
* The wallet address whose trade events you want to retrieve.
|
|
279
|
+
*/
|
|
122
280
|
walletAddress: SuiAddress;
|
|
123
281
|
};
|
|
282
|
+
/**
|
|
283
|
+
* Represents data needed for dynamically estimating gas costs for a router trade,
|
|
284
|
+
* including the coin type for gas, the coin amount out, sender address, and
|
|
285
|
+
* an optional referrer or sponsor address.
|
|
286
|
+
*/
|
|
124
287
|
export interface ApiRouterDynamicGasBody {
|
|
288
|
+
/**
|
|
289
|
+
* The transaction bytes for the intended trade.
|
|
290
|
+
*/
|
|
125
291
|
txKindBytes: TxBytes;
|
|
292
|
+
/**
|
|
293
|
+
* The coin type to be used for gas (e.g., "0x2::sui::SUI").
|
|
294
|
+
*/
|
|
126
295
|
gasCoinType: CoinType;
|
|
296
|
+
/**
|
|
297
|
+
* The coin data specifying the gas coin or a partial reference to it.
|
|
298
|
+
*/
|
|
127
299
|
gasCoinData: ServiceCoinData;
|
|
300
|
+
/**
|
|
301
|
+
* The amount of coin that the user expects to receive out of the trade, in string form for BigInt.
|
|
302
|
+
*/
|
|
128
303
|
coinOutAmount: BigIntAsString;
|
|
304
|
+
/**
|
|
305
|
+
* The address of the sender who is initiating the transaction.
|
|
306
|
+
*/
|
|
129
307
|
senderAddress: SuiAddress;
|
|
308
|
+
/**
|
|
309
|
+
* The address of a sponsor for the transaction, if applicable.
|
|
310
|
+
*/
|
|
130
311
|
sponsorAddress: SuiAddress;
|
|
312
|
+
/**
|
|
313
|
+
* Optional referrer address, if a referral mechanism is in place.
|
|
314
|
+
*/
|
|
131
315
|
referrer?: SuiAddress;
|
|
132
316
|
}
|
|
133
317
|
//# sourceMappingURL=routerTypes.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"routerTypes.d.ts","sourceRoot":"","sources":["../../../src/packages/router/routerTypes.ts"],"names":[],"mappings":"AACA,OAAO,EACN,aAAa,EACb,OAAO,EACP,UAAU,EACV,KAAK,EACL,QAAQ,EAER,QAAQ,EACR,UAAU,EACV,OAAO,EACP,cAAc,EACd,qBAAqB,EACrB,WAAW,EAEX,MAAM,EACN,oBAAoB,EACpB,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,QAAQ,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AAC9D,OAAO,EAAE,yBAAyB,EAAE,MAAM,0BAA0B,CAAC;AACrE,OAAO,EAAE,yBAAyB,IAAI,2BAA2B,EAAE,MAAM,6BAA6B,CAAC;
|
|
1
|
+
{"version":3,"file":"routerTypes.d.ts","sourceRoot":"","sources":["../../../src/packages/router/routerTypes.ts"],"names":[],"mappings":"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"}
|