@sats-connect/core 0.13.1-49d1c59 → 0.14.0-37f2f13
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 +248 -217
- package/dist/index.d.ts +248 -217
- package/dist/index.js +795 -734
- package/dist/index.mjs +791 -734
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1135,11 +1135,13 @@ type SparkFlashnetExecuteSwap = MethodParamsAndResult<SparkFlashnetExecuteSwapPa
|
|
|
1135
1135
|
declare const sparkGetClawbackEligibleTransfersMethodName = "spark_flashnet_getClawbackEligibleTransfers";
|
|
1136
1136
|
declare const sparkGetClawbackEligibleTransfersParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
1137
1137
|
type SparkGetClawbackEligibleTransfersParams = v.InferOutput<typeof sparkGetClawbackEligibleTransfersParamsSchema>;
|
|
1138
|
-
declare const sparkGetClawbackEligibleTransfersResultSchema: v.
|
|
1139
|
-
readonly
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1138
|
+
declare const sparkGetClawbackEligibleTransfersResultSchema: v.ObjectSchema<{
|
|
1139
|
+
readonly eligibleTransfers: v.ArraySchema<v.ObjectSchema<{
|
|
1140
|
+
readonly txId: v.StringSchema<undefined>;
|
|
1141
|
+
readonly createdAt: v.StringSchema<undefined>;
|
|
1142
|
+
readonly lpIdentityPublicKey: v.StringSchema<undefined>;
|
|
1143
|
+
}, undefined>, undefined>;
|
|
1144
|
+
}, undefined>;
|
|
1143
1145
|
type SparkGetClawbackEligibleTransfersResult = v.InferOutput<typeof sparkGetClawbackEligibleTransfersResultSchema>;
|
|
1144
1146
|
declare const sparkGetClawbackEligibleTransfersRequestMessageSchema: v.ObjectSchema<{
|
|
1145
1147
|
readonly method: v.LiteralSchema<"spark_flashnet_getClawbackEligibleTransfers", undefined>;
|
|
@@ -2230,6 +2232,104 @@ declare const stxTransferStxRequestMessageSchema: v.ObjectSchema<{
|
|
|
2230
2232
|
type StxTransferStxRequestMessage = v.InferOutput<typeof stxTransferStxRequestMessageSchema>;
|
|
2231
2233
|
type StxTransferStx = MethodParamsAndResult<StxTransferStxParams, StxTransferStxResult>;
|
|
2232
2234
|
|
|
2235
|
+
declare const addNetworkMethodName = "wallet_addNetwork";
|
|
2236
|
+
declare const addNetworkParamsSchema: v.VariantSchema<"chain", [v.ObjectSchema<{
|
|
2237
|
+
readonly chain: v.LiteralSchema<"bitcoin", undefined>;
|
|
2238
|
+
readonly type: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2239
|
+
readonly name: v.StringSchema<undefined>;
|
|
2240
|
+
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2241
|
+
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2242
|
+
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2243
|
+
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2244
|
+
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2245
|
+
}, undefined>, v.ObjectSchema<{
|
|
2246
|
+
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
|
2247
|
+
readonly name: v.StringSchema<undefined>;
|
|
2248
|
+
readonly type: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2249
|
+
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2250
|
+
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2251
|
+
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2252
|
+
}, undefined>, v.ObjectSchema<{
|
|
2253
|
+
readonly chain: v.LiteralSchema<"starknet", undefined>;
|
|
2254
|
+
readonly name: v.StringSchema<undefined>;
|
|
2255
|
+
readonly type: v.EnumSchema<typeof StarknetNetworkType, undefined>;
|
|
2256
|
+
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2257
|
+
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2258
|
+
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2259
|
+
}, undefined>], undefined>;
|
|
2260
|
+
type AddNetworkParams = v.InferOutput<typeof addNetworkParamsSchema>;
|
|
2261
|
+
declare const addNetworkRequestMessageSchema: v.ObjectSchema<{
|
|
2262
|
+
readonly method: v.LiteralSchema<"wallet_addNetwork", undefined>;
|
|
2263
|
+
readonly params: v.VariantSchema<"chain", [v.ObjectSchema<{
|
|
2264
|
+
readonly chain: v.LiteralSchema<"bitcoin", undefined>;
|
|
2265
|
+
readonly type: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2266
|
+
readonly name: v.StringSchema<undefined>;
|
|
2267
|
+
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2268
|
+
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2269
|
+
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2270
|
+
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2271
|
+
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2272
|
+
}, undefined>, v.ObjectSchema<{
|
|
2273
|
+
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
|
2274
|
+
readonly name: v.StringSchema<undefined>;
|
|
2275
|
+
readonly type: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2276
|
+
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2277
|
+
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2278
|
+
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2279
|
+
}, undefined>, v.ObjectSchema<{
|
|
2280
|
+
readonly chain: v.LiteralSchema<"starknet", undefined>;
|
|
2281
|
+
readonly name: v.StringSchema<undefined>;
|
|
2282
|
+
readonly type: v.EnumSchema<typeof StarknetNetworkType, undefined>;
|
|
2283
|
+
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2284
|
+
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2285
|
+
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2286
|
+
}, undefined>], undefined>;
|
|
2287
|
+
readonly id: v.StringSchema<undefined>;
|
|
2288
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2289
|
+
}, undefined>;
|
|
2290
|
+
type AddNetworkRequestMessage = v.InferOutput<typeof addNetworkRequestMessageSchema>;
|
|
2291
|
+
declare const addNetworkResultSchema: v.ObjectSchema<{
|
|
2292
|
+
readonly id: v.StringSchema<undefined>;
|
|
2293
|
+
}, undefined>;
|
|
2294
|
+
type AddNetworkResult = v.InferOutput<typeof addNetworkResultSchema>;
|
|
2295
|
+
type AddNetwork = MethodParamsAndResult<AddNetworkParams, AddNetworkResult>;
|
|
2296
|
+
|
|
2297
|
+
declare const changeNetworkMethodName = "wallet_changeNetwork";
|
|
2298
|
+
declare const changeNetworkParamsSchema: v.ObjectSchema<{
|
|
2299
|
+
readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2300
|
+
}, undefined>;
|
|
2301
|
+
type ChangeNetworkParams = v.InferOutput<typeof changeNetworkParamsSchema>;
|
|
2302
|
+
declare const changeNetworkResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2303
|
+
type ChangeNetworkResult = v.InferOutput<typeof changeNetworkResultSchema>;
|
|
2304
|
+
declare const changeNetworkRequestMessageSchema: v.ObjectSchema<{
|
|
2305
|
+
readonly method: v.LiteralSchema<"wallet_changeNetwork", undefined>;
|
|
2306
|
+
readonly params: v.ObjectSchema<{
|
|
2307
|
+
readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2308
|
+
}, undefined>;
|
|
2309
|
+
readonly id: v.StringSchema<undefined>;
|
|
2310
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2311
|
+
}, undefined>;
|
|
2312
|
+
type ChangeNetworkRequestMessage = v.InferOutput<typeof changeNetworkRequestMessageSchema>;
|
|
2313
|
+
type ChangeNetwork = MethodParamsAndResult<ChangeNetworkParams, ChangeNetworkResult>;
|
|
2314
|
+
|
|
2315
|
+
declare const changeNetworkByIdMethodName = "wallet_changeNetworkById";
|
|
2316
|
+
declare const changeNetworkByIdParamsSchema: v.ObjectSchema<{
|
|
2317
|
+
readonly id: v.StringSchema<undefined>;
|
|
2318
|
+
}, undefined>;
|
|
2319
|
+
type ChangeNetworkByIdParams = v.InferOutput<typeof changeNetworkByIdParamsSchema>;
|
|
2320
|
+
declare const changeNetworkByIdResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2321
|
+
type ChangeNetworkByIdResult = v.InferOutput<typeof changeNetworkByIdResultSchema>;
|
|
2322
|
+
declare const changeNetworkByIdRequestMessageSchema: v.ObjectSchema<{
|
|
2323
|
+
readonly method: v.LiteralSchema<"wallet_changeNetworkById", undefined>;
|
|
2324
|
+
readonly params: v.ObjectSchema<{
|
|
2325
|
+
readonly id: v.StringSchema<undefined>;
|
|
2326
|
+
}, undefined>;
|
|
2327
|
+
readonly id: v.StringSchema<undefined>;
|
|
2328
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2329
|
+
}, undefined>;
|
|
2330
|
+
type ChangeNetworkByIdRequestMessage = v.InferOutput<typeof changeNetworkByIdRequestMessageSchema>;
|
|
2331
|
+
type ChangeNetworkById = MethodParamsAndResult<ChangeNetworkByIdParams, ChangeNetworkByIdResult>;
|
|
2332
|
+
|
|
2233
2333
|
declare const accountActionsSchema: v.ObjectSchema<{
|
|
2234
2334
|
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2235
2335
|
}, undefined>;
|
|
@@ -2287,26 +2387,10 @@ declare const permission: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
|
2287
2387
|
}, undefined>;
|
|
2288
2388
|
}, undefined>], undefined>;
|
|
2289
2389
|
type PermissionWithoutClientId = v.InferOutput<typeof PermissionRequestParams>;
|
|
2290
|
-
|
|
2291
|
-
declare const
|
|
2292
|
-
|
|
2293
|
-
readonly
|
|
2294
|
-
readonly actions: v.ObjectSchema<{
|
|
2295
|
-
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2296
|
-
}, undefined>;
|
|
2297
|
-
}, undefined>, v.ObjectSchema<{
|
|
2298
|
-
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
2299
|
-
readonly resourceId: v.StringSchema<undefined>;
|
|
2300
|
-
readonly actions: v.ObjectSchema<{
|
|
2301
|
-
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2302
|
-
}, undefined>;
|
|
2303
|
-
}, undefined>], undefined>, undefined>, undefined>;
|
|
2304
|
-
type RequestPermissionsParams = v.InferOutput<typeof requestPermissionsParamsSchema>;
|
|
2305
|
-
declare const requestPermissionsResultSchema: v.LiteralSchema<true, undefined>;
|
|
2306
|
-
type RequestPermissionsResult = v.InferOutput<typeof requestPermissionsResultSchema>;
|
|
2307
|
-
declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
2308
|
-
readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
|
|
2309
|
-
readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2390
|
+
|
|
2391
|
+
declare const connectMethodName = "wallet_connect";
|
|
2392
|
+
declare const connectParamsSchema: v.NullishSchema<v.ObjectSchema<{
|
|
2393
|
+
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2310
2394
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
2311
2395
|
readonly resourceId: v.StringSchema<undefined>;
|
|
2312
2396
|
readonly actions: v.ObjectSchema<{
|
|
@@ -2319,24 +2403,60 @@ declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
|
2319
2403
|
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2320
2404
|
}, undefined>;
|
|
2321
2405
|
}, undefined>], undefined>, undefined>, undefined>;
|
|
2406
|
+
readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
|
|
2407
|
+
readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
|
|
2408
|
+
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, undefined>;
|
|
2409
|
+
}, undefined>, undefined>;
|
|
2410
|
+
type ConnectParams = v.InferOutput<typeof connectParamsSchema>;
|
|
2411
|
+
declare const connectResultSchema: v.ObjectSchema<{
|
|
2322
2412
|
readonly id: v.StringSchema<undefined>;
|
|
2323
|
-
readonly
|
|
2413
|
+
readonly addresses: v.ArraySchema<v.ObjectSchema<{
|
|
2414
|
+
readonly address: v.StringSchema<undefined>;
|
|
2415
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
2416
|
+
readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
|
|
2417
|
+
readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
|
|
2418
|
+
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2419
|
+
}, undefined>, undefined>;
|
|
2420
|
+
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2421
|
+
readonly network: v.ObjectSchema<{
|
|
2422
|
+
readonly bitcoin: v.ObjectSchema<{
|
|
2423
|
+
readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2424
|
+
}, undefined>;
|
|
2425
|
+
readonly stacks: v.ObjectSchema<{
|
|
2426
|
+
readonly name: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2427
|
+
}, undefined>;
|
|
2428
|
+
readonly spark: v.ObjectSchema<{
|
|
2429
|
+
readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
|
|
2430
|
+
}, undefined>;
|
|
2431
|
+
}, undefined>;
|
|
2324
2432
|
}, undefined>;
|
|
2325
|
-
type
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2433
|
+
type ConnectResult = v.InferOutput<typeof connectResultSchema>;
|
|
2434
|
+
declare const connectRequestMessageSchema: v.ObjectSchema<{
|
|
2435
|
+
readonly method: v.LiteralSchema<"wallet_connect", undefined>;
|
|
2436
|
+
readonly params: v.NullishSchema<v.ObjectSchema<{
|
|
2437
|
+
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2438
|
+
readonly type: v.LiteralSchema<"account", undefined>;
|
|
2439
|
+
readonly resourceId: v.StringSchema<undefined>;
|
|
2440
|
+
readonly actions: v.ObjectSchema<{
|
|
2441
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2442
|
+
}, undefined>;
|
|
2443
|
+
}, undefined>, v.ObjectSchema<{
|
|
2444
|
+
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
2445
|
+
readonly resourceId: v.StringSchema<undefined>;
|
|
2446
|
+
readonly actions: v.ObjectSchema<{
|
|
2447
|
+
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2448
|
+
}, undefined>;
|
|
2449
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2450
|
+
readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
|
|
2451
|
+
readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
|
|
2452
|
+
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, undefined>;
|
|
2453
|
+
}, undefined>, undefined>;
|
|
2335
2454
|
readonly id: v.StringSchema<undefined>;
|
|
2336
2455
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2337
2456
|
}, undefined>;
|
|
2338
|
-
type
|
|
2339
|
-
type
|
|
2457
|
+
type ConnectRequestMessage = v.InferOutput<typeof connectRequestMessageSchema>;
|
|
2458
|
+
type Connect = MethodParamsAndResult<ConnectParams, ConnectResult>;
|
|
2459
|
+
|
|
2340
2460
|
declare const disconnectMethodName = "wallet_disconnect";
|
|
2341
2461
|
declare const disconnectParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2342
2462
|
type DisconnectParams = v.InferOutput<typeof disconnectParamsSchema>;
|
|
@@ -2350,19 +2470,42 @@ declare const disconnectRequestMessageSchema: v.ObjectSchema<{
|
|
|
2350
2470
|
}, undefined>;
|
|
2351
2471
|
type DisconnectRequestMessage = v.InferOutput<typeof disconnectRequestMessageSchema>;
|
|
2352
2472
|
type Disconnect = MethodParamsAndResult<DisconnectParams, DisconnectResult>;
|
|
2353
|
-
|
|
2354
|
-
declare const
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
readonly
|
|
2473
|
+
|
|
2474
|
+
declare const getAccountMethodName = "wallet_getAccount";
|
|
2475
|
+
declare const getAccountParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2476
|
+
type GetAccountParams = v.InferOutput<typeof getAccountParamsSchema>;
|
|
2477
|
+
declare const getAccountResultSchema: v.ObjectSchema<{
|
|
2478
|
+
readonly id: v.StringSchema<undefined>;
|
|
2479
|
+
readonly addresses: v.ArraySchema<v.ObjectSchema<{
|
|
2480
|
+
readonly address: v.StringSchema<undefined>;
|
|
2481
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
2482
|
+
readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
|
|
2483
|
+
readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
|
|
2484
|
+
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2485
|
+
}, undefined>, undefined>;
|
|
2486
|
+
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2487
|
+
readonly network: v.ObjectSchema<{
|
|
2488
|
+
readonly bitcoin: v.ObjectSchema<{
|
|
2489
|
+
readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2490
|
+
}, undefined>;
|
|
2491
|
+
readonly stacks: v.ObjectSchema<{
|
|
2492
|
+
readonly name: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2493
|
+
}, undefined>;
|
|
2494
|
+
readonly spark: v.ObjectSchema<{
|
|
2495
|
+
readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
|
|
2496
|
+
}, undefined>;
|
|
2497
|
+
}, undefined>;
|
|
2498
|
+
}, undefined>;
|
|
2499
|
+
type GetAccountResult = v.InferOutput<typeof getAccountResultSchema>;
|
|
2500
|
+
declare const getAccountRequestMessageSchema: v.ObjectSchema<{
|
|
2501
|
+
readonly method: v.LiteralSchema<"wallet_getAccount", undefined>;
|
|
2360
2502
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2361
2503
|
readonly id: v.StringSchema<undefined>;
|
|
2362
2504
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2363
2505
|
}, undefined>;
|
|
2364
|
-
type
|
|
2365
|
-
type
|
|
2506
|
+
type GetAccountRequestMessage = v.InferOutput<typeof getAccountRequestMessageSchema>;
|
|
2507
|
+
type GetAccount = MethodParamsAndResult<GetAccountParams, GetAccountResult>;
|
|
2508
|
+
|
|
2366
2509
|
declare const getCurrentPermissionsMethodName = "wallet_getCurrentPermissions";
|
|
2367
2510
|
declare const getCurrentPermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2368
2511
|
type GetCurrentPermissionsParams = v.InferOutput<typeof getCurrentPermissionsParamsSchema>;
|
|
@@ -2390,6 +2533,7 @@ declare const getCurrentPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
|
2390
2533
|
}, undefined>;
|
|
2391
2534
|
type GetCurrentPermissionsRequestMessage = v.InferOutput<typeof getCurrentPermissionsRequestMessageSchema>;
|
|
2392
2535
|
type GetCurrentPermissions = MethodParamsAndResult<GetCurrentPermissionsParams, GetCurrentPermissionsResult>;
|
|
2536
|
+
|
|
2393
2537
|
declare const getNetworkMethodName = "wallet_getNetwork";
|
|
2394
2538
|
declare const getNetworkParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2395
2539
|
type GetNetworkParams = v.InferOutput<typeof getNetworkParamsSchema>;
|
|
@@ -2413,77 +2557,73 @@ declare const getNetworkRequestMessageSchema: v.ObjectSchema<{
|
|
|
2413
2557
|
}, undefined>;
|
|
2414
2558
|
type GetNetworkRequestMessage = v.InferOutput<typeof getNetworkRequestMessageSchema>;
|
|
2415
2559
|
type GetNetwork = MethodParamsAndResult<GetNetworkParams, GetNetworkResult>;
|
|
2416
|
-
|
|
2417
|
-
declare const
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
readonly
|
|
2425
|
-
readonly params: v.ObjectSchema<{
|
|
2426
|
-
readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2427
|
-
}, undefined>;
|
|
2560
|
+
|
|
2561
|
+
declare const getWalletTypeMethodName = "wallet_getWalletType";
|
|
2562
|
+
declare const getWalletTypeParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2563
|
+
type GetWalletTypeParams = v.InferOutput<typeof getWalletTypeParamsSchema>;
|
|
2564
|
+
declare const getWalletTypeResultSchema: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2565
|
+
type GetWalletTypeResult = v.InferOutput<typeof getWalletTypeResultSchema>;
|
|
2566
|
+
declare const getWalletTypeRequestMessageSchema: v.ObjectSchema<{
|
|
2567
|
+
readonly method: v.LiteralSchema<"wallet_getWalletType", undefined>;
|
|
2568
|
+
readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2428
2569
|
readonly id: v.StringSchema<undefined>;
|
|
2429
2570
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2430
2571
|
}, undefined>;
|
|
2431
|
-
type
|
|
2432
|
-
type
|
|
2433
|
-
|
|
2434
|
-
declare const
|
|
2435
|
-
|
|
2572
|
+
type GetWalletTypeRequestMessage = v.InferOutput<typeof getWalletTypeRequestMessageSchema>;
|
|
2573
|
+
type GetWalletType = MethodParamsAndResult<GetWalletTypeParams, GetWalletTypeResult>;
|
|
2574
|
+
|
|
2575
|
+
declare const openReceiveMethodName = "wallet_openReceive";
|
|
2576
|
+
declare const openReceiveParamsSchema: v.ObjectSchema<{
|
|
2577
|
+
readonly address: v.StringSchema<undefined>;
|
|
2436
2578
|
}, undefined>;
|
|
2437
|
-
type
|
|
2438
|
-
declare const
|
|
2439
|
-
type
|
|
2440
|
-
declare const
|
|
2441
|
-
readonly method: v.LiteralSchema<"
|
|
2579
|
+
type OpenReceiveParams = v.InferOutput<typeof openReceiveParamsSchema>;
|
|
2580
|
+
declare const openReceiveResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2581
|
+
type OpenReceiveResult = v.InferOutput<typeof openReceiveResultSchema>;
|
|
2582
|
+
declare const openReceiveRequestMessageSchema: v.ObjectSchema<{
|
|
2583
|
+
readonly method: v.LiteralSchema<"wallet_openReceive", undefined>;
|
|
2442
2584
|
readonly params: v.ObjectSchema<{
|
|
2443
|
-
readonly
|
|
2585
|
+
readonly address: v.StringSchema<undefined>;
|
|
2444
2586
|
}, undefined>;
|
|
2445
2587
|
readonly id: v.StringSchema<undefined>;
|
|
2446
2588
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2447
2589
|
}, undefined>;
|
|
2448
|
-
type
|
|
2449
|
-
type
|
|
2450
|
-
|
|
2451
|
-
declare const
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
|
|
2459
|
-
readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
|
|
2460
|
-
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2461
|
-
}, undefined>, undefined>;
|
|
2462
|
-
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2463
|
-
readonly network: v.ObjectSchema<{
|
|
2464
|
-
readonly bitcoin: v.ObjectSchema<{
|
|
2465
|
-
readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2466
|
-
}, undefined>;
|
|
2467
|
-
readonly stacks: v.ObjectSchema<{
|
|
2468
|
-
readonly name: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2469
|
-
}, undefined>;
|
|
2470
|
-
readonly spark: v.ObjectSchema<{
|
|
2471
|
-
readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
|
|
2472
|
-
}, undefined>;
|
|
2473
|
-
}, undefined>;
|
|
2474
|
-
}, undefined>;
|
|
2475
|
-
type GetAccountResult = v.InferOutput<typeof getAccountResultSchema>;
|
|
2476
|
-
declare const getAccountRequestMessageSchema: v.ObjectSchema<{
|
|
2477
|
-
readonly method: v.LiteralSchema<"wallet_getAccount", undefined>;
|
|
2590
|
+
type OpenReceiveRequestMessage = v.InferOutput<typeof openReceiveRequestMessageSchema>;
|
|
2591
|
+
type OpenReceive = MethodParamsAndResult<OpenReceiveParams, OpenReceiveResult>;
|
|
2592
|
+
|
|
2593
|
+
declare const renouncePermissionsMethodName = "wallet_renouncePermissions";
|
|
2594
|
+
declare const renouncePermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2595
|
+
type RenouncePermissionsParams = v.InferOutput<typeof renouncePermissionsParamsSchema>;
|
|
2596
|
+
declare const renouncePermissionsResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2597
|
+
type RenouncePermissionsResult = v.InferOutput<typeof renouncePermissionsResultSchema>;
|
|
2598
|
+
declare const renouncePermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
2599
|
+
readonly method: v.LiteralSchema<"wallet_renouncePermissions", undefined>;
|
|
2478
2600
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2479
2601
|
readonly id: v.StringSchema<undefined>;
|
|
2480
2602
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2481
2603
|
}, undefined>;
|
|
2482
|
-
type
|
|
2483
|
-
type
|
|
2484
|
-
|
|
2485
|
-
declare const
|
|
2486
|
-
|
|
2604
|
+
type RenouncePermissionsRequestMessage = v.InferOutput<typeof renouncePermissionsRequestMessageSchema>;
|
|
2605
|
+
type RenouncePermissions = MethodParamsAndResult<RenouncePermissionsParams, RenouncePermissionsResult>;
|
|
2606
|
+
|
|
2607
|
+
declare const requestPermissionsMethodName = "wallet_requestPermissions";
|
|
2608
|
+
declare const requestPermissionsParamsSchema: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2609
|
+
readonly type: v.LiteralSchema<"account", undefined>;
|
|
2610
|
+
readonly resourceId: v.StringSchema<undefined>;
|
|
2611
|
+
readonly actions: v.ObjectSchema<{
|
|
2612
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2613
|
+
}, undefined>;
|
|
2614
|
+
}, undefined>, v.ObjectSchema<{
|
|
2615
|
+
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
2616
|
+
readonly resourceId: v.StringSchema<undefined>;
|
|
2617
|
+
readonly actions: v.ObjectSchema<{
|
|
2618
|
+
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2619
|
+
}, undefined>;
|
|
2620
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2621
|
+
type RequestPermissionsParams = v.InferOutput<typeof requestPermissionsParamsSchema>;
|
|
2622
|
+
declare const requestPermissionsResultSchema: v.LiteralSchema<true, undefined>;
|
|
2623
|
+
type RequestPermissionsResult = v.InferOutput<typeof requestPermissionsResultSchema>;
|
|
2624
|
+
declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
2625
|
+
readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
|
|
2626
|
+
readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2487
2627
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
2488
2628
|
readonly resourceId: v.StringSchema<undefined>;
|
|
2489
2629
|
readonly actions: v.ObjectSchema<{
|
|
@@ -2496,120 +2636,11 @@ declare const connectParamsSchema: v.NullishSchema<v.ObjectSchema<{
|
|
|
2496
2636
|
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2497
2637
|
}, undefined>;
|
|
2498
2638
|
}, undefined>], undefined>, undefined>, undefined>;
|
|
2499
|
-
readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
|
|
2500
|
-
readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
|
|
2501
|
-
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, undefined>;
|
|
2502
|
-
}, undefined>, undefined>;
|
|
2503
|
-
type ConnectParams = v.InferOutput<typeof connectParamsSchema>;
|
|
2504
|
-
declare const connectResultSchema: v.ObjectSchema<{
|
|
2505
|
-
readonly id: v.StringSchema<undefined>;
|
|
2506
|
-
readonly addresses: v.ArraySchema<v.ObjectSchema<{
|
|
2507
|
-
readonly address: v.StringSchema<undefined>;
|
|
2508
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
2509
|
-
readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
|
|
2510
|
-
readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
|
|
2511
|
-
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2512
|
-
}, undefined>, undefined>;
|
|
2513
|
-
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2514
|
-
readonly network: v.ObjectSchema<{
|
|
2515
|
-
readonly bitcoin: v.ObjectSchema<{
|
|
2516
|
-
readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2517
|
-
}, undefined>;
|
|
2518
|
-
readonly stacks: v.ObjectSchema<{
|
|
2519
|
-
readonly name: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2520
|
-
}, undefined>;
|
|
2521
|
-
readonly spark: v.ObjectSchema<{
|
|
2522
|
-
readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
|
|
2523
|
-
}, undefined>;
|
|
2524
|
-
}, undefined>;
|
|
2525
|
-
}, undefined>;
|
|
2526
|
-
type ConnectResult = v.InferOutput<typeof connectResultSchema>;
|
|
2527
|
-
declare const connectRequestMessageSchema: v.ObjectSchema<{
|
|
2528
|
-
readonly method: v.LiteralSchema<"wallet_connect", undefined>;
|
|
2529
|
-
readonly params: v.NullishSchema<v.ObjectSchema<{
|
|
2530
|
-
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2531
|
-
readonly type: v.LiteralSchema<"account", undefined>;
|
|
2532
|
-
readonly resourceId: v.StringSchema<undefined>;
|
|
2533
|
-
readonly actions: v.ObjectSchema<{
|
|
2534
|
-
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2535
|
-
}, undefined>;
|
|
2536
|
-
}, undefined>, v.ObjectSchema<{
|
|
2537
|
-
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
2538
|
-
readonly resourceId: v.StringSchema<undefined>;
|
|
2539
|
-
readonly actions: v.ObjectSchema<{
|
|
2540
|
-
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2541
|
-
}, undefined>;
|
|
2542
|
-
}, undefined>], undefined>, undefined>, undefined>;
|
|
2543
|
-
readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
|
|
2544
|
-
readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
|
|
2545
|
-
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, undefined>;
|
|
2546
|
-
}, undefined>, undefined>;
|
|
2547
2639
|
readonly id: v.StringSchema<undefined>;
|
|
2548
2640
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2549
2641
|
}, undefined>;
|
|
2550
|
-
type
|
|
2551
|
-
type
|
|
2552
|
-
declare const addNetworkMethodName = "wallet_addNetwork";
|
|
2553
|
-
declare const addNetworkParamsSchema: v.VariantSchema<"chain", [v.ObjectSchema<{
|
|
2554
|
-
readonly chain: v.LiteralSchema<"bitcoin", undefined>;
|
|
2555
|
-
readonly type: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2556
|
-
readonly name: v.StringSchema<undefined>;
|
|
2557
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2558
|
-
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2559
|
-
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2560
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2561
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2562
|
-
}, undefined>, v.ObjectSchema<{
|
|
2563
|
-
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
|
2564
|
-
readonly name: v.StringSchema<undefined>;
|
|
2565
|
-
readonly type: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2566
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2567
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2568
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2569
|
-
}, undefined>, v.ObjectSchema<{
|
|
2570
|
-
readonly chain: v.LiteralSchema<"starknet", undefined>;
|
|
2571
|
-
readonly name: v.StringSchema<undefined>;
|
|
2572
|
-
readonly type: v.EnumSchema<typeof StarknetNetworkType, undefined>;
|
|
2573
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2574
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2575
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2576
|
-
}, undefined>], undefined>;
|
|
2577
|
-
type AddNetworkParams = v.InferOutput<typeof addNetworkParamsSchema>;
|
|
2578
|
-
declare const addNetworkRequestMessageSchema: v.ObjectSchema<{
|
|
2579
|
-
readonly method: v.LiteralSchema<"wallet_addNetwork", undefined>;
|
|
2580
|
-
readonly params: v.VariantSchema<"chain", [v.ObjectSchema<{
|
|
2581
|
-
readonly chain: v.LiteralSchema<"bitcoin", undefined>;
|
|
2582
|
-
readonly type: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2583
|
-
readonly name: v.StringSchema<undefined>;
|
|
2584
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2585
|
-
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2586
|
-
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2587
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2588
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2589
|
-
}, undefined>, v.ObjectSchema<{
|
|
2590
|
-
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
|
2591
|
-
readonly name: v.StringSchema<undefined>;
|
|
2592
|
-
readonly type: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2593
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2594
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2595
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2596
|
-
}, undefined>, v.ObjectSchema<{
|
|
2597
|
-
readonly chain: v.LiteralSchema<"starknet", undefined>;
|
|
2598
|
-
readonly name: v.StringSchema<undefined>;
|
|
2599
|
-
readonly type: v.EnumSchema<typeof StarknetNetworkType, undefined>;
|
|
2600
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2601
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2602
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2603
|
-
}, undefined>], undefined>;
|
|
2604
|
-
readonly id: v.StringSchema<undefined>;
|
|
2605
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2606
|
-
}, undefined>;
|
|
2607
|
-
type AddNetworkRequestMessage = v.InferOutput<typeof addNetworkRequestMessageSchema>;
|
|
2608
|
-
declare const addNetworkResultSchema: v.ObjectSchema<{
|
|
2609
|
-
readonly id: v.StringSchema<undefined>;
|
|
2610
|
-
}, undefined>;
|
|
2611
|
-
type AddNetworkResult = v.InferOutput<typeof addNetworkResultSchema>;
|
|
2612
|
-
type AddNetwork = MethodParamsAndResult<AddNetworkParams, AddNetworkResult>;
|
|
2642
|
+
type RequestPermissionsRequestMessage = v.InferOutput<typeof requestPermissionsRequestMessageSchema>;
|
|
2643
|
+
type RequestPermissions = MethodParamsAndResult<RequestPermissionsParams, RequestPermissionsResult>;
|
|
2613
2644
|
|
|
2614
2645
|
declare const walletTypes: readonly ["software", "ledger", "keystone"];
|
|
2615
2646
|
declare const walletTypeSchema: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
@@ -2729,4 +2760,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
|
|
|
2729
2760
|
declare const DefaultAdaptersInfo: Record<string, Provider>;
|
|
2730
2761
|
declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
|
|
2731
2762
|
|
|
2732
|
-
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, ProviderPlatform, 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 SparkFlashnetClawbackFunds, type SparkFlashnetClawbackFundsParams, type SparkFlashnetClawbackFundsRequestMessage, type SparkFlashnetClawbackFundsResult, type SparkFlashnetExecuteRouteSwap, type SparkFlashnetExecuteRouteSwapParams, type SparkFlashnetExecuteRouteSwapRequestMessage, type SparkFlashnetExecuteRouteSwapResult, type SparkFlashnetExecuteSwap, type SparkFlashnetExecuteSwapParams, type SparkFlashnetExecuteSwapRequestMessage, type SparkFlashnetExecuteSwapResult, type SparkFlashnetGetJwt, type SparkFlashnetGetJwtParams, type SparkFlashnetGetJwtRequestMessage, type SparkFlashnetGetJwtResult, type SparkFlashnetSignIntent, type SparkFlashnetSignIntentParams, type SparkFlashnetSignIntentRequestMessage, type SparkFlashnetSignIntentResult, type SparkFlashnetSignStructuredMessage, type SparkFlashnetSignStructuredMessageParams, type SparkFlashnetSignStructuredMessageRequestMessage, type SparkFlashnetSignStructuredMessageResult, type SparkGetAddresses, type SparkGetAddressesParams, type SparkGetAddressesRequestMessage, type SparkGetAddressesResult, type SparkGetBalance, type SparkGetBalanceParams, type SparkGetBalanceRequestMessage, type SparkGetBalanceResult, type SparkGetClawbackEligibleTransfers, type SparkGetClawbackEligibleTransfersParams, type SparkGetClawbackEligibleTransfersRequestMessage, type SparkGetClawbackEligibleTransfersResult, SparkNetworkType, type SparkRequestMethod, type SparkRequests, type SparkSignMessage, type SparkSignMessageParams, type SparkSignMessageRequestMessage, type SparkSignMessageResult, 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, sparkFlashnetClawbackFundsMethodName, sparkFlashnetClawbackFundsParamsSchema, sparkFlashnetClawbackFundsRequestMessageSchema, sparkFlashnetClawbackFundsResultSchema, sparkFlashnetClawbackIntentSchema, sparkFlashnetConfirmInitialDepositIntentSchema, sparkFlashnetCreateConstantProductPoolIntentSchema, sparkFlashnetCreateSingleSidedPoolIntentSchema, sparkFlashnetExecuteRouteSwapMethodName, sparkFlashnetExecuteRouteSwapParamsSchema, sparkFlashnetExecuteRouteSwapRequestMessageSchema, sparkFlashnetExecuteRouteSwapResultSchema, sparkFlashnetExecuteSwapMethodName, sparkFlashnetExecuteSwapParamsSchema, sparkFlashnetExecuteSwapRequestMessageSchema, sparkFlashnetExecuteSwapResultSchema, sparkFlashnetGetJwtMethodName, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestMessageSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetRemoveLiquidityIntentSchema, sparkFlashnetRouteSwapIntentSchema, sparkFlashnetSignIntentMethodName, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestMessageSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSignStructuredMessageMethodName, sparkFlashnetSignStructuredMessageParamsSchema, sparkFlashnetSignStructuredMessageRequestMessageSchema, sparkFlashnetSignStructuredMessageResultSchema, sparkFlashnetSwapIntentSchema, sparkGetAddressesMethodName, sparkGetAddressesParamsSchema, sparkGetAddressesRequestMessageSchema, sparkGetAddressesResultSchema, sparkGetBalanceMethodName, sparkGetBalanceParamsSchema, sparkGetBalanceRequestMessageSchema, sparkGetBalanceResultSchema, sparkGetClawbackEligibleTransfersMethodName, sparkGetClawbackEligibleTransfersParamsSchema, sparkGetClawbackEligibleTransfersRequestMessageSchema, sparkGetClawbackEligibleTransfersResultSchema, sparkSignMessageMethodName, sparkSignMessageParamsSchema, sparkSignMessageRequestMessageSchema, sparkSignMessageResultSchema, 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 };
|
|
2763
|
+
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 OpenReceive, type OpenReceiveParams, type OpenReceiveRequestMessage, type OpenReceiveResult, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, PermissionRequestParams, type PermissionWithoutClientId, type Provider, ProviderPlatform, 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 SparkFlashnetClawbackFunds, type SparkFlashnetClawbackFundsParams, type SparkFlashnetClawbackFundsRequestMessage, type SparkFlashnetClawbackFundsResult, type SparkFlashnetExecuteRouteSwap, type SparkFlashnetExecuteRouteSwapParams, type SparkFlashnetExecuteRouteSwapRequestMessage, type SparkFlashnetExecuteRouteSwapResult, type SparkFlashnetExecuteSwap, type SparkFlashnetExecuteSwapParams, type SparkFlashnetExecuteSwapRequestMessage, type SparkFlashnetExecuteSwapResult, type SparkFlashnetGetJwt, type SparkFlashnetGetJwtParams, type SparkFlashnetGetJwtRequestMessage, type SparkFlashnetGetJwtResult, type SparkFlashnetSignIntent, type SparkFlashnetSignIntentParams, type SparkFlashnetSignIntentRequestMessage, type SparkFlashnetSignIntentResult, type SparkFlashnetSignStructuredMessage, type SparkFlashnetSignStructuredMessageParams, type SparkFlashnetSignStructuredMessageRequestMessage, type SparkFlashnetSignStructuredMessageResult, type SparkGetAddresses, type SparkGetAddressesParams, type SparkGetAddressesRequestMessage, type SparkGetAddressesResult, type SparkGetBalance, type SparkGetBalanceParams, type SparkGetBalanceRequestMessage, type SparkGetBalanceResult, type SparkGetClawbackEligibleTransfers, type SparkGetClawbackEligibleTransfersParams, type SparkGetClawbackEligibleTransfersRequestMessage, type SparkGetClawbackEligibleTransfersResult, SparkNetworkType, type SparkRequestMethod, type SparkRequests, type SparkSignMessage, type SparkSignMessageParams, type SparkSignMessageRequestMessage, type SparkSignMessageResult, 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, openReceiveMethodName, openReceiveParamsSchema, openReceiveRequestMessageSchema, openReceiveResultSchema, 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, sparkFlashnetClawbackFundsMethodName, sparkFlashnetClawbackFundsParamsSchema, sparkFlashnetClawbackFundsRequestMessageSchema, sparkFlashnetClawbackFundsResultSchema, sparkFlashnetClawbackIntentSchema, sparkFlashnetConfirmInitialDepositIntentSchema, sparkFlashnetCreateConstantProductPoolIntentSchema, sparkFlashnetCreateSingleSidedPoolIntentSchema, sparkFlashnetExecuteRouteSwapMethodName, sparkFlashnetExecuteRouteSwapParamsSchema, sparkFlashnetExecuteRouteSwapRequestMessageSchema, sparkFlashnetExecuteRouteSwapResultSchema, sparkFlashnetExecuteSwapMethodName, sparkFlashnetExecuteSwapParamsSchema, sparkFlashnetExecuteSwapRequestMessageSchema, sparkFlashnetExecuteSwapResultSchema, sparkFlashnetGetJwtMethodName, sparkFlashnetGetJwtParamsSchema, sparkFlashnetGetJwtRequestMessageSchema, sparkFlashnetGetJwtResultSchema, sparkFlashnetRemoveLiquidityIntentSchema, sparkFlashnetRouteSwapIntentSchema, sparkFlashnetSignIntentMethodName, sparkFlashnetSignIntentParamsSchema, sparkFlashnetSignIntentRequestMessageSchema, sparkFlashnetSignIntentResultSchema, sparkFlashnetSignStructuredMessageMethodName, sparkFlashnetSignStructuredMessageParamsSchema, sparkFlashnetSignStructuredMessageRequestMessageSchema, sparkFlashnetSignStructuredMessageResultSchema, sparkFlashnetSwapIntentSchema, sparkGetAddressesMethodName, sparkGetAddressesParamsSchema, sparkGetAddressesRequestMessageSchema, sparkGetAddressesResultSchema, sparkGetBalanceMethodName, sparkGetBalanceParamsSchema, sparkGetBalanceRequestMessageSchema, sparkGetBalanceResultSchema, sparkGetClawbackEligibleTransfersMethodName, sparkGetClawbackEligibleTransfersParamsSchema, sparkGetClawbackEligibleTransfersRequestMessageSchema, sparkGetClawbackEligibleTransfersResultSchema, sparkSignMessageMethodName, sparkSignMessageParamsSchema, sparkSignMessageRequestMessageSchema, sparkSignMessageResultSchema, 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 };
|