@sats-connect/core 0.8.1-36b4382 → 0.8.1-91ac91b
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 +72 -274
- package/dist/index.d.ts +72 -274
- package/dist/index.js +215 -313
- package/dist/index.mjs +214 -307
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1038,118 +1038,83 @@ declare const sparkFlashnetGetJwtRequestMessageSchema: v.ObjectSchema<{
|
|
|
1038
1038
|
type SparkFlashnetGetJwtRequestMessage = v.InferOutput<typeof sparkFlashnetGetJwtRequestMessageSchema>;
|
|
1039
1039
|
type SparkFlashnetGetJwt = MethodParamsAndResult<SparkFlashnetGetJwtParams, SparkFlashnetGetJwtResult>;
|
|
1040
1040
|
|
|
1041
|
-
declare
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1046
|
-
readonly assetAAmount: v.StringSchema<undefined>;
|
|
1047
|
-
readonly assetBAmount: v.StringSchema<undefined>;
|
|
1048
|
-
readonly assetAMinAmountIn: v.StringSchema<undefined>;
|
|
1049
|
-
readonly assetBMinAmountIn: v.StringSchema<undefined>;
|
|
1050
|
-
readonly assetATransferId: v.StringSchema<undefined>;
|
|
1051
|
-
readonly assetBTransferId: v.StringSchema<undefined>;
|
|
1052
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1053
|
-
}, undefined>;
|
|
1054
|
-
}, undefined>;
|
|
1055
|
-
|
|
1056
|
-
declare const sparkFlashnetClawbackIntentSchema: v.ObjectSchema<{
|
|
1057
|
-
readonly type: v.LiteralSchema<"clawback", undefined>;
|
|
1058
|
-
readonly data: v.ObjectSchema<{
|
|
1059
|
-
readonly senderPublicKey: v.StringSchema<undefined>;
|
|
1060
|
-
readonly sparkTransferId: v.StringSchema<undefined>;
|
|
1061
|
-
readonly lpIdentityPublicKey: v.StringSchema<undefined>;
|
|
1062
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1063
|
-
}, undefined>;
|
|
1064
|
-
}, undefined>;
|
|
1065
|
-
|
|
1066
|
-
declare const sparkFlashnetConfirmInitialDepositIntentSchema: v.ObjectSchema<{
|
|
1067
|
-
readonly type: v.LiteralSchema<"confirmInitialDeposit", undefined>;
|
|
1068
|
-
readonly data: v.ObjectSchema<{
|
|
1069
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1070
|
-
readonly assetASparkTransferId: v.StringSchema<undefined>;
|
|
1071
|
-
readonly poolOwnerPublicKey: v.StringSchema<undefined>;
|
|
1072
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1073
|
-
}, undefined>;
|
|
1074
|
-
}, undefined>;
|
|
1075
|
-
|
|
1076
|
-
declare const sparkFlashnetCreateConstantProductPoolIntentSchema: v.ObjectSchema<{
|
|
1077
|
-
readonly type: v.LiteralSchema<"createConstantProductPool", undefined>;
|
|
1078
|
-
readonly data: v.ObjectSchema<{
|
|
1079
|
-
readonly poolOwnerPublicKey: v.StringSchema<undefined>;
|
|
1080
|
-
readonly assetAAddress: v.StringSchema<undefined>;
|
|
1081
|
-
readonly assetBAddress: v.StringSchema<undefined>;
|
|
1082
|
-
readonly lpFeeRateBps: v.NumberSchema<undefined>;
|
|
1083
|
-
readonly totalHostFeeRateBps: v.NumberSchema<undefined>;
|
|
1084
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1085
|
-
}, undefined>;
|
|
1086
|
-
}, undefined>;
|
|
1087
|
-
|
|
1088
|
-
declare const sparkFlashnetCreateSingleSidedPoolIntentSchema: v.ObjectSchema<{
|
|
1089
|
-
readonly type: v.LiteralSchema<"createSingleSidedPool", undefined>;
|
|
1090
|
-
readonly data: v.ObjectSchema<{
|
|
1091
|
-
readonly assetAAddress: v.StringSchema<undefined>;
|
|
1092
|
-
readonly assetBAddress: v.StringSchema<undefined>;
|
|
1093
|
-
readonly assetAInitialReserve: v.StringSchema<undefined>;
|
|
1094
|
-
readonly virtualReserveA: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1095
|
-
readonly virtualReserveB: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1096
|
-
readonly threshold: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1097
|
-
readonly lpFeeRateBps: v.NumberSchema<undefined>;
|
|
1098
|
-
readonly totalHostFeeRateBps: v.NumberSchema<undefined>;
|
|
1099
|
-
readonly poolOwnerPublicKey: v.StringSchema<undefined>;
|
|
1100
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1101
|
-
}, undefined>;
|
|
1102
|
-
}, undefined>;
|
|
1041
|
+
declare enum FlashnetIntentType {
|
|
1042
|
+
Swap = "swap",
|
|
1043
|
+
RouteSwap = "route-swap"
|
|
1044
|
+
}
|
|
1103
1045
|
|
|
1104
|
-
declare const
|
|
1105
|
-
readonly
|
|
1106
|
-
readonly
|
|
1107
|
-
|
|
1046
|
+
declare const sparkFlashnetRouteSwapIntentSchema: v.ObjectSchema<{
|
|
1047
|
+
readonly intentType: v.LiteralSchema<FlashnetIntentType.RouteSwap, undefined>;
|
|
1048
|
+
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1049
|
+
readonly initialSparkTransferId: v.StringSchema<undefined>;
|
|
1050
|
+
readonly hops: v.ArraySchema<v.ObjectSchema<{
|
|
1108
1051
|
readonly poolId: v.StringSchema<undefined>;
|
|
1109
|
-
readonly
|
|
1110
|
-
readonly
|
|
1111
|
-
|
|
1052
|
+
readonly assetInAddress: v.StringSchema<undefined>;
|
|
1053
|
+
readonly assetOutAddress: v.StringSchema<undefined>;
|
|
1054
|
+
readonly hopIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1055
|
+
}, undefined>, undefined>;
|
|
1056
|
+
readonly inputAmount: v.StringSchema<undefined>;
|
|
1057
|
+
readonly maxRouteSlippageBps: v.NumberSchema<undefined>;
|
|
1058
|
+
readonly minAmountOut: v.StringSchema<undefined>;
|
|
1059
|
+
readonly defaultIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1060
|
+
readonly nonce: v.StringSchema<undefined>;
|
|
1112
1061
|
}, undefined>;
|
|
1113
1062
|
|
|
1114
|
-
declare const
|
|
1115
|
-
readonly
|
|
1116
|
-
readonly
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
readonly maxRouteSlippageBps: v.NumberSchema<undefined>;
|
|
1127
|
-
readonly minAmountOut: v.StringSchema<undefined>;
|
|
1128
|
-
readonly defaultIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1129
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1130
|
-
}, undefined>;
|
|
1063
|
+
declare const sparkFlashnetSwapIntentSchema: v.ObjectSchema<{
|
|
1064
|
+
readonly intentType: v.LiteralSchema<FlashnetIntentType.Swap, undefined>;
|
|
1065
|
+
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1066
|
+
readonly poolId: v.StringSchema<undefined>;
|
|
1067
|
+
readonly transferId: v.StringSchema<undefined>;
|
|
1068
|
+
readonly assetInAddress: v.StringSchema<undefined>;
|
|
1069
|
+
readonly assetOutAddress: v.StringSchema<undefined>;
|
|
1070
|
+
readonly amountIn: v.StringSchema<undefined>;
|
|
1071
|
+
readonly maxSlippageBps: v.NumberSchema<undefined>;
|
|
1072
|
+
readonly minAmountOut: v.StringSchema<undefined>;
|
|
1073
|
+
readonly totalIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1074
|
+
readonly nonce: v.StringSchema<undefined>;
|
|
1131
1075
|
}, undefined>;
|
|
1132
1076
|
|
|
1133
|
-
declare const
|
|
1134
|
-
|
|
1135
|
-
readonly
|
|
1136
|
-
|
|
1077
|
+
declare const sparkFlashnetSignIntentMethodName = "spark_flashnet_signIntent";
|
|
1078
|
+
declare const sparkFlashnetSignIntentParamsSchema: v.UnionSchema<[v.ObjectSchema<{
|
|
1079
|
+
readonly intentType: v.LiteralSchema<FlashnetIntentType.Swap, undefined>;
|
|
1080
|
+
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1081
|
+
readonly poolId: v.StringSchema<undefined>;
|
|
1082
|
+
readonly transferId: v.StringSchema<undefined>;
|
|
1083
|
+
readonly assetInAddress: v.StringSchema<undefined>;
|
|
1084
|
+
readonly assetOutAddress: v.StringSchema<undefined>;
|
|
1085
|
+
readonly amountIn: v.StringSchema<undefined>;
|
|
1086
|
+
readonly maxSlippageBps: v.NumberSchema<undefined>;
|
|
1087
|
+
readonly minAmountOut: v.StringSchema<undefined>;
|
|
1088
|
+
readonly totalIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1089
|
+
readonly nonce: v.StringSchema<undefined>;
|
|
1090
|
+
}, undefined>, v.ObjectSchema<{
|
|
1091
|
+
readonly intentType: v.LiteralSchema<FlashnetIntentType.RouteSwap, undefined>;
|
|
1092
|
+
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1093
|
+
readonly initialSparkTransferId: v.StringSchema<undefined>;
|
|
1094
|
+
readonly hops: v.ArraySchema<v.ObjectSchema<{
|
|
1137
1095
|
readonly poolId: v.StringSchema<undefined>;
|
|
1138
|
-
readonly transferId: v.StringSchema<undefined>;
|
|
1139
1096
|
readonly assetInAddress: v.StringSchema<undefined>;
|
|
1140
1097
|
readonly assetOutAddress: v.StringSchema<undefined>;
|
|
1141
|
-
readonly
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1098
|
+
readonly hopIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1099
|
+
}, undefined>, undefined>;
|
|
1100
|
+
readonly inputAmount: v.StringSchema<undefined>;
|
|
1101
|
+
readonly maxRouteSlippageBps: v.NumberSchema<undefined>;
|
|
1102
|
+
readonly minAmountOut: v.StringSchema<undefined>;
|
|
1103
|
+
readonly defaultIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1104
|
+
readonly nonce: v.StringSchema<undefined>;
|
|
1105
|
+
}, undefined>], undefined>;
|
|
1106
|
+
type SparkFlashnetSignIntentParams = v.InferOutput<typeof sparkFlashnetSignIntentParamsSchema>;
|
|
1107
|
+
declare const sparkFlashnetSignIntentResultSchema: v.ObjectSchema<{
|
|
1108
|
+
/**
|
|
1109
|
+
* The signed intent as a hex string.
|
|
1110
|
+
*/
|
|
1111
|
+
readonly signature: v.StringSchema<undefined>;
|
|
1147
1112
|
}, undefined>;
|
|
1148
|
-
|
|
1149
|
-
declare const
|
|
1150
|
-
|
|
1151
|
-
readonly
|
|
1152
|
-
|
|
1113
|
+
type SparkFlashnetSignIntentResult = v.InferOutput<typeof sparkFlashnetSignIntentResultSchema>;
|
|
1114
|
+
declare const sparkFlashnetSignIntentRequestMessageSchema: v.ObjectSchema<{
|
|
1115
|
+
readonly method: v.LiteralSchema<"spark_flashnet_signIntent", undefined>;
|
|
1116
|
+
readonly params: v.UnionSchema<[v.ObjectSchema<{
|
|
1117
|
+
readonly intentType: v.LiteralSchema<FlashnetIntentType.Swap, undefined>;
|
|
1153
1118
|
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1154
1119
|
readonly poolId: v.StringSchema<undefined>;
|
|
1155
1120
|
readonly transferId: v.StringSchema<undefined>;
|
|
@@ -1160,16 +1125,14 @@ declare const sparkFlashnetSignIntentParamsSchema: v.UnionSchema<[v.ObjectSchema
|
|
|
1160
1125
|
readonly minAmountOut: v.StringSchema<undefined>;
|
|
1161
1126
|
readonly totalIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1162
1127
|
readonly nonce: v.StringSchema<undefined>;
|
|
1163
|
-
}, undefined
|
|
1164
|
-
|
|
1165
|
-
readonly type: v.LiteralSchema<"executeRouteSwap", undefined>;
|
|
1166
|
-
readonly data: v.ObjectSchema<{
|
|
1128
|
+
}, undefined>, v.ObjectSchema<{
|
|
1129
|
+
readonly intentType: v.LiteralSchema<FlashnetIntentType.RouteSwap, undefined>;
|
|
1167
1130
|
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1168
1131
|
readonly initialSparkTransferId: v.StringSchema<undefined>;
|
|
1169
1132
|
readonly hops: v.ArraySchema<v.ObjectSchema<{
|
|
1170
1133
|
readonly poolId: v.StringSchema<undefined>;
|
|
1171
|
-
readonly
|
|
1172
|
-
readonly
|
|
1134
|
+
readonly assetInAddress: v.StringSchema<undefined>;
|
|
1135
|
+
readonly assetOutAddress: v.StringSchema<undefined>;
|
|
1173
1136
|
readonly hopIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1174
1137
|
}, undefined>, undefined>;
|
|
1175
1138
|
readonly inputAmount: v.StringSchema<undefined>;
|
|
@@ -1177,171 +1140,6 @@ declare const sparkFlashnetSignIntentParamsSchema: v.UnionSchema<[v.ObjectSchema
|
|
|
1177
1140
|
readonly minAmountOut: v.StringSchema<undefined>;
|
|
1178
1141
|
readonly defaultIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1179
1142
|
readonly nonce: v.StringSchema<undefined>;
|
|
1180
|
-
}, undefined>;
|
|
1181
|
-
}, undefined>, v.ObjectSchema<{
|
|
1182
|
-
readonly type: v.LiteralSchema<"addLiquidity", undefined>;
|
|
1183
|
-
readonly data: v.ObjectSchema<{
|
|
1184
|
-
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1185
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1186
|
-
readonly assetAAmount: v.StringSchema<undefined>;
|
|
1187
|
-
readonly assetBAmount: v.StringSchema<undefined>;
|
|
1188
|
-
readonly assetAMinAmountIn: v.StringSchema<undefined>;
|
|
1189
|
-
readonly assetBMinAmountIn: v.StringSchema<undefined>;
|
|
1190
|
-
readonly assetATransferId: v.StringSchema<undefined>;
|
|
1191
|
-
readonly assetBTransferId: v.StringSchema<undefined>;
|
|
1192
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1193
|
-
}, undefined>;
|
|
1194
|
-
}, undefined>, v.ObjectSchema<{
|
|
1195
|
-
readonly type: v.LiteralSchema<"clawback", undefined>;
|
|
1196
|
-
readonly data: v.ObjectSchema<{
|
|
1197
|
-
readonly senderPublicKey: v.StringSchema<undefined>;
|
|
1198
|
-
readonly sparkTransferId: v.StringSchema<undefined>;
|
|
1199
|
-
readonly lpIdentityPublicKey: v.StringSchema<undefined>;
|
|
1200
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1201
|
-
}, undefined>;
|
|
1202
|
-
}, undefined>, v.ObjectSchema<{
|
|
1203
|
-
readonly type: v.LiteralSchema<"confirmInitialDeposit", undefined>;
|
|
1204
|
-
readonly data: v.ObjectSchema<{
|
|
1205
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1206
|
-
readonly assetASparkTransferId: v.StringSchema<undefined>;
|
|
1207
|
-
readonly poolOwnerPublicKey: v.StringSchema<undefined>;
|
|
1208
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1209
|
-
}, undefined>;
|
|
1210
|
-
}, undefined>, v.ObjectSchema<{
|
|
1211
|
-
readonly type: v.LiteralSchema<"createConstantProductPool", undefined>;
|
|
1212
|
-
readonly data: v.ObjectSchema<{
|
|
1213
|
-
readonly poolOwnerPublicKey: v.StringSchema<undefined>;
|
|
1214
|
-
readonly assetAAddress: v.StringSchema<undefined>;
|
|
1215
|
-
readonly assetBAddress: v.StringSchema<undefined>;
|
|
1216
|
-
readonly lpFeeRateBps: v.NumberSchema<undefined>;
|
|
1217
|
-
readonly totalHostFeeRateBps: v.NumberSchema<undefined>;
|
|
1218
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1219
|
-
}, undefined>;
|
|
1220
|
-
}, undefined>, v.ObjectSchema<{
|
|
1221
|
-
readonly type: v.LiteralSchema<"createSingleSidedPool", undefined>;
|
|
1222
|
-
readonly data: v.ObjectSchema<{
|
|
1223
|
-
readonly assetAAddress: v.StringSchema<undefined>;
|
|
1224
|
-
readonly assetBAddress: v.StringSchema<undefined>;
|
|
1225
|
-
readonly assetAInitialReserve: v.StringSchema<undefined>;
|
|
1226
|
-
readonly virtualReserveA: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1227
|
-
readonly virtualReserveB: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1228
|
-
readonly threshold: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1229
|
-
readonly lpFeeRateBps: v.NumberSchema<undefined>;
|
|
1230
|
-
readonly totalHostFeeRateBps: v.NumberSchema<undefined>;
|
|
1231
|
-
readonly poolOwnerPublicKey: v.StringSchema<undefined>;
|
|
1232
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1233
|
-
}, undefined>;
|
|
1234
|
-
}, undefined>, v.ObjectSchema<{
|
|
1235
|
-
readonly type: v.LiteralSchema<"removeLiquidity", undefined>;
|
|
1236
|
-
readonly data: v.ObjectSchema<{
|
|
1237
|
-
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1238
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1239
|
-
readonly lpTokensToRemove: v.StringSchema<undefined>;
|
|
1240
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1241
|
-
}, undefined>;
|
|
1242
|
-
}, undefined>], undefined>;
|
|
1243
|
-
type SparkFlashnetSignIntentParams = v.InferOutput<typeof sparkFlashnetSignIntentParamsSchema>;
|
|
1244
|
-
declare const sparkFlashnetSignIntentResultSchema: v.ObjectSchema<{
|
|
1245
|
-
/**
|
|
1246
|
-
* The signed intent as a hex string.
|
|
1247
|
-
*/
|
|
1248
|
-
readonly signature: v.StringSchema<undefined>;
|
|
1249
|
-
}, undefined>;
|
|
1250
|
-
type SparkFlashnetSignIntentResult = v.InferOutput<typeof sparkFlashnetSignIntentResultSchema>;
|
|
1251
|
-
declare const sparkFlashnetSignIntentRequestMessageSchema: v.ObjectSchema<{
|
|
1252
|
-
readonly method: v.LiteralSchema<"spark_flashnet_signIntent", undefined>;
|
|
1253
|
-
readonly params: v.UnionSchema<[v.ObjectSchema<{
|
|
1254
|
-
readonly type: v.LiteralSchema<"executeSwap", undefined>;
|
|
1255
|
-
readonly data: v.ObjectSchema<{
|
|
1256
|
-
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1257
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1258
|
-
readonly transferId: v.StringSchema<undefined>;
|
|
1259
|
-
readonly assetInAddress: v.StringSchema<undefined>;
|
|
1260
|
-
readonly assetOutAddress: v.StringSchema<undefined>;
|
|
1261
|
-
readonly amountIn: v.StringSchema<undefined>;
|
|
1262
|
-
readonly maxSlippageBps: v.NumberSchema<undefined>;
|
|
1263
|
-
readonly minAmountOut: v.StringSchema<undefined>;
|
|
1264
|
-
readonly totalIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1265
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1266
|
-
}, undefined>;
|
|
1267
|
-
}, undefined>, v.ObjectSchema<{
|
|
1268
|
-
readonly type: v.LiteralSchema<"executeRouteSwap", undefined>;
|
|
1269
|
-
readonly data: v.ObjectSchema<{
|
|
1270
|
-
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1271
|
-
readonly initialSparkTransferId: v.StringSchema<undefined>;
|
|
1272
|
-
readonly hops: v.ArraySchema<v.ObjectSchema<{
|
|
1273
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1274
|
-
readonly inputAssetAddress: v.StringSchema<undefined>;
|
|
1275
|
-
readonly outputAssetAddress: v.StringSchema<undefined>;
|
|
1276
|
-
readonly hopIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1277
|
-
}, undefined>, undefined>;
|
|
1278
|
-
readonly inputAmount: v.StringSchema<undefined>;
|
|
1279
|
-
readonly maxRouteSlippageBps: v.NumberSchema<undefined>;
|
|
1280
|
-
readonly minAmountOut: v.StringSchema<undefined>;
|
|
1281
|
-
readonly defaultIntegratorFeeRateBps: v.OptionalSchema<v.NumberSchema<undefined>, undefined>;
|
|
1282
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1283
|
-
}, undefined>;
|
|
1284
|
-
}, undefined>, v.ObjectSchema<{
|
|
1285
|
-
readonly type: v.LiteralSchema<"addLiquidity", undefined>;
|
|
1286
|
-
readonly data: v.ObjectSchema<{
|
|
1287
|
-
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1288
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1289
|
-
readonly assetAAmount: v.StringSchema<undefined>;
|
|
1290
|
-
readonly assetBAmount: v.StringSchema<undefined>;
|
|
1291
|
-
readonly assetAMinAmountIn: v.StringSchema<undefined>;
|
|
1292
|
-
readonly assetBMinAmountIn: v.StringSchema<undefined>;
|
|
1293
|
-
readonly assetATransferId: v.StringSchema<undefined>;
|
|
1294
|
-
readonly assetBTransferId: v.StringSchema<undefined>;
|
|
1295
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1296
|
-
}, undefined>;
|
|
1297
|
-
}, undefined>, v.ObjectSchema<{
|
|
1298
|
-
readonly type: v.LiteralSchema<"clawback", undefined>;
|
|
1299
|
-
readonly data: v.ObjectSchema<{
|
|
1300
|
-
readonly senderPublicKey: v.StringSchema<undefined>;
|
|
1301
|
-
readonly sparkTransferId: v.StringSchema<undefined>;
|
|
1302
|
-
readonly lpIdentityPublicKey: v.StringSchema<undefined>;
|
|
1303
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1304
|
-
}, undefined>;
|
|
1305
|
-
}, undefined>, v.ObjectSchema<{
|
|
1306
|
-
readonly type: v.LiteralSchema<"confirmInitialDeposit", undefined>;
|
|
1307
|
-
readonly data: v.ObjectSchema<{
|
|
1308
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1309
|
-
readonly assetASparkTransferId: v.StringSchema<undefined>;
|
|
1310
|
-
readonly poolOwnerPublicKey: v.StringSchema<undefined>;
|
|
1311
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1312
|
-
}, undefined>;
|
|
1313
|
-
}, undefined>, v.ObjectSchema<{
|
|
1314
|
-
readonly type: v.LiteralSchema<"createConstantProductPool", undefined>;
|
|
1315
|
-
readonly data: v.ObjectSchema<{
|
|
1316
|
-
readonly poolOwnerPublicKey: v.StringSchema<undefined>;
|
|
1317
|
-
readonly assetAAddress: v.StringSchema<undefined>;
|
|
1318
|
-
readonly assetBAddress: v.StringSchema<undefined>;
|
|
1319
|
-
readonly lpFeeRateBps: v.NumberSchema<undefined>;
|
|
1320
|
-
readonly totalHostFeeRateBps: v.NumberSchema<undefined>;
|
|
1321
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1322
|
-
}, undefined>;
|
|
1323
|
-
}, undefined>, v.ObjectSchema<{
|
|
1324
|
-
readonly type: v.LiteralSchema<"createSingleSidedPool", undefined>;
|
|
1325
|
-
readonly data: v.ObjectSchema<{
|
|
1326
|
-
readonly assetAAddress: v.StringSchema<undefined>;
|
|
1327
|
-
readonly assetBAddress: v.StringSchema<undefined>;
|
|
1328
|
-
readonly assetAInitialReserve: v.StringSchema<undefined>;
|
|
1329
|
-
readonly virtualReserveA: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1330
|
-
readonly virtualReserveB: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1331
|
-
readonly threshold: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1332
|
-
readonly lpFeeRateBps: v.NumberSchema<undefined>;
|
|
1333
|
-
readonly totalHostFeeRateBps: v.NumberSchema<undefined>;
|
|
1334
|
-
readonly poolOwnerPublicKey: v.StringSchema<undefined>;
|
|
1335
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1336
|
-
}, undefined>;
|
|
1337
|
-
}, undefined>, v.ObjectSchema<{
|
|
1338
|
-
readonly type: v.LiteralSchema<"removeLiquidity", undefined>;
|
|
1339
|
-
readonly data: v.ObjectSchema<{
|
|
1340
|
-
readonly userPublicKey: v.StringSchema<undefined>;
|
|
1341
|
-
readonly poolId: v.StringSchema<undefined>;
|
|
1342
|
-
readonly lpTokensToRemove: v.StringSchema<undefined>;
|
|
1343
|
-
readonly nonce: v.StringSchema<undefined>;
|
|
1344
|
-
}, undefined>;
|
|
1345
1143
|
}, undefined>], undefined>;
|
|
1346
1144
|
readonly id: v.StringSchema<undefined>;
|
|
1347
1145
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
@@ -2538,4 +2336,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
|
|
|
2538
2336
|
declare const DefaultAdaptersInfo: Record<string, Provider>;
|
|
2539
2337
|
declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
|
|
2540
2338
|
|
|
2541
|
-
export { type AccountChangeCallback, type AccountChangeEvent, type AddListener, type AddNetwork, type AddNetworkParams, type AddNetworkRequestMessage, type AddNetworkResult, type Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type Capability, type ChangeNetwork, type ChangeNetworkById, type ChangeNetworkByIdParams, type ChangeNetworkByIdRequestMessage, type ChangeNetworkByIdResult, type ChangeNetworkParams, type ChangeNetworkRequestMessage, type ChangeNetworkResult, type Connect, type ConnectParams, type ConnectRequestMessage, type ConnectResult, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type Disconnect, type DisconnectCallback, type DisconnectEvent, type DisconnectParams, type DisconnectRequestMessage, type DisconnectResult, type GetAccount, type GetAccountParams, type GetAccountRequestMessage, type GetAccountResult, type GetAccounts, type GetAccountsParams, type GetAccountsRequestMessage, type GetAccountsResult, type GetAddressOptions, type GetAddressPayload, type GetAddressResponse, type GetAddresses, type GetAddressesParams, type GetAddressesRequestMessage, type GetAddressesResult, type GetBalance, type GetBalanceParams, type GetBalanceRequestMessage, type GetBalanceResult, type GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetCurrentPermissionsParams, type GetCurrentPermissionsRequestMessage, type GetCurrentPermissionsResult, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetInscriptionsParams, type GetInscriptionsRequestMessage, type GetInscriptionsResult, type GetNetwork, type GetNetworkParams, type GetNetworkRequestMessage, type GetNetworkResult, type GetWalletType, type GetWalletTypeParams, type GetWalletTypeRequestMessage, type GetWalletTypeResult, type InputToSign, type ListenerInfo, MessageSigningProtocols, type MethodParamsAndResult, type NetworkChangeCallback, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, PermissionRequestParams, type PermissionWithoutClientId, type Provider, type PsbtPayload, type Recipient, type RenouncePermissions, type RenouncePermissionsParams, type RenouncePermissionsRequestMessage, type RenouncePermissionsResult, type RequestOptions, type RequestPayload, type RequestPermissions, type RequestPermissionsParams, type RequestPermissionsRequestMessage, type RequestPermissionsResult, type Requests, type Return, type RpcBase, type RpcError, RpcErrorCode, type RpcErrorResponse, type RpcErrorResponseMessage, type RpcId, RpcIdSchema, type RpcRequest, type RpcRequestMessage, type RpcResponse, type RpcResponseMessage, type RpcResult, type RpcSuccessResponse, type RpcSuccessResponseMessage, type RunesEstimateEtch, type RunesEstimateEtchParams, type RunesEstimateEtchResult, type RunesEstimateMint, type RunesEstimateRbfOrder, type RunesEtch, type RunesEtchParams, type RunesEtchRequestMessage, type RunesEtchResult, type RunesGetBalance, type RunesGetBalanceParams, type RunesGetBalanceResult, type RunesGetOrder, type RunesMint, type RunesMintParams, type RunesMintRequestMessage, type RunesMintResult, type RunesRbfOrder, type RunesRequestMethod, type RunesRequests, type RunesTransfer, type RunesTransferRequestMessage, type RunesTransferResult, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendInscriptionsParams, type SendInscriptionsRequestMessage, type SendInscriptionsResult, type SendTransfer, type SendTransferParams, type SendTransferRequestMessage, type SendTransferResult, type SerializedRecipient, type SerializedSendBtcTransactionPayload, type SignMessage, type SignMessageOptions, type SignMessageParams, type SignMessagePayload, type SignMessageRequestMessage, type SignMessageResponse, type SignMessageResult, type SignMultiplePsbtPayload, type SignMultipleTransactionOptions, type SignMultipleTransactionsPayload, type SignMultipleTransactionsResponse, type SignPsbt, type SignPsbtParams, type SignPsbtRequestMessage, type SignPsbtResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type SparkFlashnetGetJwt, type SparkFlashnetGetJwtParams, type SparkFlashnetGetJwtRequestMessage, type SparkFlashnetGetJwtResult, type SparkFlashnetSignIntent, type SparkFlashnetSignIntentParams, type SparkFlashnetSignIntentRequestMessage, type SparkFlashnetSignIntentResult, type SparkGetAddresses, type SparkGetAddressesParams, type SparkGetAddressesRequestMessage, type SparkGetAddressesResult, type SparkGetBalance, type SparkGetBalanceParams, type SparkGetBalanceRequestMessage, type SparkGetBalanceResult, SparkNetworkType, type SparkRequestMethod, type SparkRequests, type SparkTransfer, type SparkTransferParams, type SparkTransferRequestMessage, type SparkTransferResult, type SparkTransferToken, type SparkTransferTokenParams, type SparkTransferTokenRequestMessage, type SparkTransferTokenResult, StacksNetworkType, StarknetNetworkType, type StxCallContract, type StxCallContractParams, type StxCallContractRequestMessage, type StxCallContractResult, type StxDeployContract, type StxDeployContractParams, type StxDeployContractRequestMessage, type StxDeployContractResult, type StxGetAccounts, type StxGetAccountsParams, type StxGetAccountsRequestMessage, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignMessage, type StxSignMessageParams, type StxSignMessageRequestMessage, type StxSignMessageResult, type StxSignStructuredMessage, type StxSignStructuredMessageParams, type StxSignStructuredMessageRequestMessage, type StxSignStructuredMessageResult, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxSignTransactions, type StxSignTransactionsParams, type StxSignTransactionsRequestMessage, type StxSignTransactionsResult, type StxTransferStx, type StxTransferStxParams, type StxTransferStxRequestMessage, type StxTransferStxResult, type SupportedWallet, type TransferRunesParams, type WalletEvent, type WalletRequests, type WalletType, accountActionsSchema, accountChangeEventName, accountChangeSchema, accountPermissionSchema, addListener, addNetworkMethodName, addNetworkParamsSchema, addNetworkRequestMessageSchema, addNetworkResultSchema, addressSchema, changeNetworkByIdMethodName, changeNetworkByIdParamsSchema, changeNetworkByIdRequestMessageSchema, changeNetworkByIdResultSchema, changeNetworkMethodName, changeNetworkParamsSchema, changeNetworkRequestMessageSchema, changeNetworkResultSchema, connectMethodName, connectParamsSchema, connectRequestMessageSchema, connectResultSchema, createInscription, createRepeatInscriptions, defaultAdapters, disconnectEventName, disconnectMethodName, disconnectParamsSchema, disconnectRequestMessageSchema, disconnectResultSchema, disconnectSchema, getAccountMethodName, getAccountParamsSchema, getAccountRequestMessageSchema, getAccountResultSchema, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getCurrentPermissionsMethodName, getCurrentPermissionsParamsSchema, getCurrentPermissionsRequestMessageSchema, getCurrentPermissionsResultSchema, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsRequestMessageSchema, getInscriptionsResultSchema, getNetworkMethodName, getNetworkParamsSchema, getNetworkRequestMessageSchema, getNetworkResultSchema, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, permission, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, type runesEstimateMintParams, type runesEstimateMintResult, runesEtchMethodName, runesEtchParamsSchema, runesEtchRequestMessageSchema, runesEtchResultSchema, runesGetBalanceMethodName, runesGetBalanceParamsSchema, type runesGetBalanceRequestMessage, runesGetBalanceRequestMessageSchema, runesGetBalanceResultSchema, runesMintMethodName, runesMintParamsSchema, runesMintRequestMessageSchema, runesMintResultSchema, runesTransferMethodName, runesTransferParamsSchema, runesTransferRequestMessageSchema, runesTransferResultSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsRequestMessageSchema, sendInscriptionsResultSchema, sendTransferMethodName, sendTransferParamsSchema, sendTransferRequestMessageSchema, sendTransferResultSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleTransactions, signPsbtMethodName, signPsbtParamsSchema, signPsbtRequestMessageSchema, signPsbtResultSchema, signTransaction, sparkFlashnetAddLiquidityIntentSchema, sparkFlashnetClawbackIntentSchema, sparkFlashnetConfirmInitialDepositIntentSchema, sparkFlashnetCreateConstantProductPoolIntentSchema, sparkFlashnetCreateSingleSidedPoolIntentSchema, sparkFlashnetGetJwtMethodName, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestMessageSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetRemoveLiquidityIntentSchema, sparkFlashnetRouteSwapIntentSchema, sparkFlashnetSignIntentMethodName, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestMessageSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSwapIntentSchema, sparkGetAddressesMethodName, sparkGetAddressesParamsSchema, sparkGetAddressesRequestMessageSchema, sparkGetAddressesResultSchema, sparkGetBalanceMethodName, sparkGetBalanceParamsSchema, sparkGetBalanceRequestMessageSchema, sparkGetBalanceResultSchema, sparkTransferMethodName, sparkTransferParamsSchema, sparkTransferRequestMessageSchema, sparkTransferResultSchema, sparkTransferTokenMethodName, sparkTransferTokenParamsSchema, sparkTransferTokenRequestMessageSchema, sparkTransferTokenResultSchema, stxCallContractMethodName, stxCallContractParamsSchema, stxCallContractRequestMessageSchema, stxCallContractResultSchema, stxDeployContractMethodName, stxDeployContractParamsSchema, stxDeployContractRequestMessageSchema, stxDeployContractResultSchema, stxGetAccountsMethodName, stxGetAccountsParamsSchema, stxGetAccountsRequestMessageSchema, stxGetAccountsResultSchema, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignMessageMethodName, stxSignMessageParamsSchema, stxSignMessageRequestMessageSchema, stxSignMessageResultSchema, stxSignStructuredMessageMethodName, stxSignStructuredMessageParamsSchema, stxSignStructuredMessageRequestMessageSchema, stxSignStructuredMessageResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, stxSignTransactionsMethodName, stxSignTransactionsParamsSchema, stxSignTransactionsRequestMessageSchema, stxSignTransactionsResultSchema, stxTransferStxMethodName, stxTransferStxParamsSchema, stxTransferStxRequestMessageSchema, stxTransferStxResultSchema, walletActionsSchema, walletEventSchema, walletPermissionSchema, walletTypeSchema, walletTypes };
|
|
2339
|
+
export { type AccountChangeCallback, type AccountChangeEvent, type AddListener, type AddNetwork, type AddNetworkParams, type AddNetworkRequestMessage, type AddNetworkResult, type Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type Capability, type ChangeNetwork, type ChangeNetworkById, type ChangeNetworkByIdParams, type ChangeNetworkByIdRequestMessage, type ChangeNetworkByIdResult, type ChangeNetworkParams, type ChangeNetworkRequestMessage, type ChangeNetworkResult, type Connect, type ConnectParams, type ConnectRequestMessage, type ConnectResult, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type Disconnect, type DisconnectCallback, type DisconnectEvent, type DisconnectParams, type DisconnectRequestMessage, type DisconnectResult, FlashnetIntentType, type GetAccount, type GetAccountParams, type GetAccountRequestMessage, type GetAccountResult, type GetAccounts, type GetAccountsParams, type GetAccountsRequestMessage, type GetAccountsResult, type GetAddressOptions, type GetAddressPayload, type GetAddressResponse, type GetAddresses, type GetAddressesParams, type GetAddressesRequestMessage, type GetAddressesResult, type GetBalance, type GetBalanceParams, type GetBalanceRequestMessage, type GetBalanceResult, type GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetCurrentPermissionsParams, type GetCurrentPermissionsRequestMessage, type GetCurrentPermissionsResult, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetInscriptionsParams, type GetInscriptionsRequestMessage, type GetInscriptionsResult, type GetNetwork, type GetNetworkParams, type GetNetworkRequestMessage, type GetNetworkResult, type GetWalletType, type GetWalletTypeParams, type GetWalletTypeRequestMessage, type GetWalletTypeResult, type InputToSign, type ListenerInfo, MessageSigningProtocols, type MethodParamsAndResult, type NetworkChangeCallback, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, PermissionRequestParams, type PermissionWithoutClientId, type Provider, type PsbtPayload, type Recipient, type RenouncePermissions, type RenouncePermissionsParams, type RenouncePermissionsRequestMessage, type RenouncePermissionsResult, type RequestOptions, type RequestPayload, type RequestPermissions, type RequestPermissionsParams, type RequestPermissionsRequestMessage, type RequestPermissionsResult, type Requests, type Return, type RpcBase, type RpcError, RpcErrorCode, type RpcErrorResponse, type RpcErrorResponseMessage, type RpcId, RpcIdSchema, type RpcRequest, type RpcRequestMessage, type RpcResponse, type RpcResponseMessage, type RpcResult, type RpcSuccessResponse, type RpcSuccessResponseMessage, type RunesEstimateEtch, type RunesEstimateEtchParams, type RunesEstimateEtchResult, type RunesEstimateMint, type RunesEstimateRbfOrder, type RunesEtch, type RunesEtchParams, type RunesEtchRequestMessage, type RunesEtchResult, type RunesGetBalance, type RunesGetBalanceParams, type RunesGetBalanceResult, type RunesGetOrder, type RunesMint, type RunesMintParams, type RunesMintRequestMessage, type RunesMintResult, type RunesRbfOrder, type RunesRequestMethod, type RunesRequests, type RunesTransfer, type RunesTransferRequestMessage, type RunesTransferResult, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendInscriptionsParams, type SendInscriptionsRequestMessage, type SendInscriptionsResult, type SendTransfer, type SendTransferParams, type SendTransferRequestMessage, type SendTransferResult, type SerializedRecipient, type SerializedSendBtcTransactionPayload, type SignMessage, type SignMessageOptions, type SignMessageParams, type SignMessagePayload, type SignMessageRequestMessage, type SignMessageResponse, type SignMessageResult, type SignMultiplePsbtPayload, type SignMultipleTransactionOptions, type SignMultipleTransactionsPayload, type SignMultipleTransactionsResponse, type SignPsbt, type SignPsbtParams, type SignPsbtRequestMessage, type SignPsbtResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type SparkFlashnetGetJwt, type SparkFlashnetGetJwtParams, type SparkFlashnetGetJwtRequestMessage, type SparkFlashnetGetJwtResult, type SparkFlashnetSignIntent, type SparkFlashnetSignIntentParams, type SparkFlashnetSignIntentRequestMessage, type SparkFlashnetSignIntentResult, type SparkGetAddresses, type SparkGetAddressesParams, type SparkGetAddressesRequestMessage, type SparkGetAddressesResult, type SparkGetBalance, type SparkGetBalanceParams, type SparkGetBalanceRequestMessage, type SparkGetBalanceResult, SparkNetworkType, type SparkRequestMethod, type SparkRequests, type SparkTransfer, type SparkTransferParams, type SparkTransferRequestMessage, type SparkTransferResult, type SparkTransferToken, type SparkTransferTokenParams, type SparkTransferTokenRequestMessage, type SparkTransferTokenResult, StacksNetworkType, StarknetNetworkType, type StxCallContract, type StxCallContractParams, type StxCallContractRequestMessage, type StxCallContractResult, type StxDeployContract, type StxDeployContractParams, type StxDeployContractRequestMessage, type StxDeployContractResult, type StxGetAccounts, type StxGetAccountsParams, type StxGetAccountsRequestMessage, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignMessage, type StxSignMessageParams, type StxSignMessageRequestMessage, type StxSignMessageResult, type StxSignStructuredMessage, type StxSignStructuredMessageParams, type StxSignStructuredMessageRequestMessage, type StxSignStructuredMessageResult, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxSignTransactions, type StxSignTransactionsParams, type StxSignTransactionsRequestMessage, type StxSignTransactionsResult, type StxTransferStx, type StxTransferStxParams, type StxTransferStxRequestMessage, type StxTransferStxResult, type SupportedWallet, type TransferRunesParams, type WalletEvent, type WalletRequests, type WalletType, accountActionsSchema, accountChangeEventName, accountChangeSchema, accountPermissionSchema, addListener, addNetworkMethodName, addNetworkParamsSchema, addNetworkRequestMessageSchema, addNetworkResultSchema, addressSchema, changeNetworkByIdMethodName, changeNetworkByIdParamsSchema, changeNetworkByIdRequestMessageSchema, changeNetworkByIdResultSchema, changeNetworkMethodName, changeNetworkParamsSchema, changeNetworkRequestMessageSchema, changeNetworkResultSchema, connectMethodName, connectParamsSchema, connectRequestMessageSchema, connectResultSchema, createInscription, createRepeatInscriptions, defaultAdapters, disconnectEventName, disconnectMethodName, disconnectParamsSchema, disconnectRequestMessageSchema, disconnectResultSchema, disconnectSchema, getAccountMethodName, getAccountParamsSchema, getAccountRequestMessageSchema, getAccountResultSchema, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getCurrentPermissionsMethodName, getCurrentPermissionsParamsSchema, getCurrentPermissionsRequestMessageSchema, getCurrentPermissionsResultSchema, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsRequestMessageSchema, getInscriptionsResultSchema, getNetworkMethodName, getNetworkParamsSchema, getNetworkRequestMessageSchema, getNetworkResultSchema, getProviderById, getProviderOrThrow, getProviders, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, permission, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, type runesEstimateMintParams, type runesEstimateMintResult, runesEtchMethodName, runesEtchParamsSchema, runesEtchRequestMessageSchema, runesEtchResultSchema, runesGetBalanceMethodName, runesGetBalanceParamsSchema, type runesGetBalanceRequestMessage, runesGetBalanceRequestMessageSchema, runesGetBalanceResultSchema, runesMintMethodName, runesMintParamsSchema, runesMintRequestMessageSchema, runesMintResultSchema, runesTransferMethodName, runesTransferParamsSchema, runesTransferRequestMessageSchema, runesTransferResultSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsRequestMessageSchema, sendInscriptionsResultSchema, sendTransferMethodName, sendTransferParamsSchema, sendTransferRequestMessageSchema, sendTransferResultSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleTransactions, signPsbtMethodName, signPsbtParamsSchema, signPsbtRequestMessageSchema, signPsbtResultSchema, signTransaction, sparkFlashnetGetJwtMethodName, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestMessageSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetRouteSwapIntentSchema, sparkFlashnetSignIntentMethodName, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestMessageSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSwapIntentSchema, sparkGetAddressesMethodName, sparkGetAddressesParamsSchema, sparkGetAddressesRequestMessageSchema, sparkGetAddressesResultSchema, sparkGetBalanceMethodName, sparkGetBalanceParamsSchema, sparkGetBalanceRequestMessageSchema, sparkGetBalanceResultSchema, sparkTransferMethodName, sparkTransferParamsSchema, sparkTransferRequestMessageSchema, sparkTransferResultSchema, sparkTransferTokenMethodName, sparkTransferTokenParamsSchema, sparkTransferTokenRequestMessageSchema, sparkTransferTokenResultSchema, stxCallContractMethodName, stxCallContractParamsSchema, stxCallContractRequestMessageSchema, stxCallContractResultSchema, stxDeployContractMethodName, stxDeployContractParamsSchema, stxDeployContractRequestMessageSchema, stxDeployContractResultSchema, stxGetAccountsMethodName, stxGetAccountsParamsSchema, stxGetAccountsRequestMessageSchema, stxGetAccountsResultSchema, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignMessageMethodName, stxSignMessageParamsSchema, stxSignMessageRequestMessageSchema, stxSignMessageResultSchema, stxSignStructuredMessageMethodName, stxSignStructuredMessageParamsSchema, stxSignStructuredMessageRequestMessageSchema, stxSignStructuredMessageResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, stxSignTransactionsMethodName, stxSignTransactionsParamsSchema, stxSignTransactionsRequestMessageSchema, stxSignTransactionsResultSchema, stxTransferStxMethodName, stxTransferStxParamsSchema, stxTransferStxRequestMessageSchema, stxTransferStxResultSchema, walletActionsSchema, walletEventSchema, walletPermissionSchema, walletTypeSchema, walletTypes };
|