@sats-connect/core 0.14.1 → 0.15.0-aec2448
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 +282 -206
- package/dist/index.d.ts +282 -206
- package/dist/index.js +841 -733
- package/dist/index.mjs +829 -733
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -2232,6 +2232,104 @@ declare const stxTransferStxRequestMessageSchema: v.ObjectSchema<{
|
|
|
2232
2232
|
type StxTransferStxRequestMessage = v.InferOutput<typeof stxTransferStxRequestMessageSchema>;
|
|
2233
2233
|
type StxTransferStx = MethodParamsAndResult<StxTransferStxParams, StxTransferStxResult>;
|
|
2234
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
|
+
|
|
2235
2333
|
declare const accountActionsSchema: v.ObjectSchema<{
|
|
2236
2334
|
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2237
2335
|
}, undefined>;
|
|
@@ -2289,26 +2387,10 @@ declare const permission: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
|
2289
2387
|
}, undefined>;
|
|
2290
2388
|
}, undefined>], undefined>;
|
|
2291
2389
|
type PermissionWithoutClientId = v.InferOutput<typeof PermissionRequestParams>;
|
|
2292
|
-
|
|
2293
|
-
declare const
|
|
2294
|
-
|
|
2295
|
-
readonly
|
|
2296
|
-
readonly actions: v.ObjectSchema<{
|
|
2297
|
-
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2298
|
-
}, undefined>;
|
|
2299
|
-
}, undefined>, v.ObjectSchema<{
|
|
2300
|
-
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
2301
|
-
readonly resourceId: v.StringSchema<undefined>;
|
|
2302
|
-
readonly actions: v.ObjectSchema<{
|
|
2303
|
-
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2304
|
-
}, undefined>;
|
|
2305
|
-
}, undefined>], undefined>, undefined>, undefined>;
|
|
2306
|
-
type RequestPermissionsParams = v.InferOutput<typeof requestPermissionsParamsSchema>;
|
|
2307
|
-
declare const requestPermissionsResultSchema: v.LiteralSchema<true, undefined>;
|
|
2308
|
-
type RequestPermissionsResult = v.InferOutput<typeof requestPermissionsResultSchema>;
|
|
2309
|
-
declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
2310
|
-
readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
|
|
2311
|
-
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<{
|
|
2312
2394
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
2313
2395
|
readonly resourceId: v.StringSchema<undefined>;
|
|
2314
2396
|
readonly actions: v.ObjectSchema<{
|
|
@@ -2321,24 +2403,60 @@ declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
|
2321
2403
|
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2322
2404
|
}, undefined>;
|
|
2323
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<{
|
|
2324
2412
|
readonly id: v.StringSchema<undefined>;
|
|
2325
|
-
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>;
|
|
2326
2432
|
}, undefined>;
|
|
2327
|
-
type
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
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>;
|
|
2337
2454
|
readonly id: v.StringSchema<undefined>;
|
|
2338
2455
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2339
2456
|
}, undefined>;
|
|
2340
|
-
type
|
|
2341
|
-
type
|
|
2457
|
+
type ConnectRequestMessage = v.InferOutput<typeof connectRequestMessageSchema>;
|
|
2458
|
+
type Connect = MethodParamsAndResult<ConnectParams, ConnectResult>;
|
|
2459
|
+
|
|
2342
2460
|
declare const disconnectMethodName = "wallet_disconnect";
|
|
2343
2461
|
declare const disconnectParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2344
2462
|
type DisconnectParams = v.InferOutput<typeof disconnectParamsSchema>;
|
|
@@ -2352,19 +2470,42 @@ declare const disconnectRequestMessageSchema: v.ObjectSchema<{
|
|
|
2352
2470
|
}, undefined>;
|
|
2353
2471
|
type DisconnectRequestMessage = v.InferOutput<typeof disconnectRequestMessageSchema>;
|
|
2354
2472
|
type Disconnect = MethodParamsAndResult<DisconnectParams, DisconnectResult>;
|
|
2355
|
-
|
|
2356
|
-
declare const
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
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>;
|
|
2362
2502
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2363
2503
|
readonly id: v.StringSchema<undefined>;
|
|
2364
2504
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2365
2505
|
}, undefined>;
|
|
2366
|
-
type
|
|
2367
|
-
type
|
|
2506
|
+
type GetAccountRequestMessage = v.InferOutput<typeof getAccountRequestMessageSchema>;
|
|
2507
|
+
type GetAccount = MethodParamsAndResult<GetAccountParams, GetAccountResult>;
|
|
2508
|
+
|
|
2368
2509
|
declare const getCurrentPermissionsMethodName = "wallet_getCurrentPermissions";
|
|
2369
2510
|
declare const getCurrentPermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2370
2511
|
type GetCurrentPermissionsParams = v.InferOutput<typeof getCurrentPermissionsParamsSchema>;
|
|
@@ -2392,6 +2533,7 @@ declare const getCurrentPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
|
2392
2533
|
}, undefined>;
|
|
2393
2534
|
type GetCurrentPermissionsRequestMessage = v.InferOutput<typeof getCurrentPermissionsRequestMessageSchema>;
|
|
2394
2535
|
type GetCurrentPermissions = MethodParamsAndResult<GetCurrentPermissionsParams, GetCurrentPermissionsResult>;
|
|
2536
|
+
|
|
2395
2537
|
declare const getNetworkMethodName = "wallet_getNetwork";
|
|
2396
2538
|
declare const getNetworkParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2397
2539
|
type GetNetworkParams = v.InferOutput<typeof getNetworkParamsSchema>;
|
|
@@ -2415,77 +2557,117 @@ declare const getNetworkRequestMessageSchema: v.ObjectSchema<{
|
|
|
2415
2557
|
}, undefined>;
|
|
2416
2558
|
type GetNetworkRequestMessage = v.InferOutput<typeof getNetworkRequestMessageSchema>;
|
|
2417
2559
|
type GetNetwork = MethodParamsAndResult<GetNetworkParams, GetNetworkResult>;
|
|
2418
|
-
|
|
2419
|
-
declare const
|
|
2420
|
-
|
|
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>;
|
|
2569
|
+
readonly id: v.StringSchema<undefined>;
|
|
2570
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2421
2571
|
}, undefined>;
|
|
2422
|
-
type
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
declare const
|
|
2426
|
-
|
|
2572
|
+
type GetWalletTypeRequestMessage = v.InferOutput<typeof getWalletTypeRequestMessageSchema>;
|
|
2573
|
+
type GetWalletType = MethodParamsAndResult<GetWalletTypeParams, GetWalletTypeResult>;
|
|
2574
|
+
|
|
2575
|
+
declare const openBridgeMethodName = "wallet_openBridge";
|
|
2576
|
+
declare const openBridgeParamsSchema: v.ObjectSchema<{
|
|
2577
|
+
readonly fromAsset: v.StringSchema<undefined>;
|
|
2578
|
+
readonly toAsset: v.StringSchema<undefined>;
|
|
2579
|
+
}, undefined>;
|
|
2580
|
+
type OpenBridgeParams = v.InferOutput<typeof openBridgeParamsSchema>;
|
|
2581
|
+
declare const openBridgeResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2582
|
+
type OpenBridgeResult = v.InferOutput<typeof openBridgeResultSchema>;
|
|
2583
|
+
declare const openBridgeRequestMessageSchema: v.ObjectSchema<{
|
|
2584
|
+
readonly method: v.LiteralSchema<"wallet_openBridge", undefined>;
|
|
2427
2585
|
readonly params: v.ObjectSchema<{
|
|
2428
|
-
readonly
|
|
2586
|
+
readonly fromAsset: v.StringSchema<undefined>;
|
|
2587
|
+
readonly toAsset: v.StringSchema<undefined>;
|
|
2429
2588
|
}, undefined>;
|
|
2430
2589
|
readonly id: v.StringSchema<undefined>;
|
|
2431
2590
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2432
2591
|
}, undefined>;
|
|
2433
|
-
type
|
|
2434
|
-
type
|
|
2435
|
-
|
|
2436
|
-
declare const
|
|
2437
|
-
|
|
2592
|
+
type OpenBridgeRequestMessage = v.InferOutput<typeof openBridgeRequestMessageSchema>;
|
|
2593
|
+
type OpenBridge = MethodParamsAndResult<OpenBridgeParams, OpenBridgeResult>;
|
|
2594
|
+
|
|
2595
|
+
declare const openBuyMethodName = "wallet_openBuy";
|
|
2596
|
+
declare const openBuyParamsSchema: v.ObjectSchema<{
|
|
2597
|
+
readonly asset: v.StringSchema<undefined>;
|
|
2438
2598
|
}, undefined>;
|
|
2439
|
-
type
|
|
2440
|
-
declare const
|
|
2441
|
-
type
|
|
2442
|
-
declare const
|
|
2443
|
-
readonly method: v.LiteralSchema<"
|
|
2599
|
+
type OpenBuyParams = v.InferOutput<typeof openBuyParamsSchema>;
|
|
2600
|
+
declare const openBuyResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2601
|
+
type OpenBuyResult = v.InferOutput<typeof openBuyResultSchema>;
|
|
2602
|
+
declare const openBuyRequestMessageSchema: v.ObjectSchema<{
|
|
2603
|
+
readonly method: v.LiteralSchema<"wallet_openBuy", undefined>;
|
|
2444
2604
|
readonly params: v.ObjectSchema<{
|
|
2445
|
-
readonly
|
|
2605
|
+
readonly asset: v.StringSchema<undefined>;
|
|
2446
2606
|
}, undefined>;
|
|
2447
2607
|
readonly id: v.StringSchema<undefined>;
|
|
2448
2608
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2449
2609
|
}, undefined>;
|
|
2450
|
-
type
|
|
2451
|
-
type
|
|
2452
|
-
|
|
2453
|
-
declare const
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
}, undefined>, undefined>;
|
|
2610
|
+
type OpenBuyRequestMessage = v.InferOutput<typeof openBuyRequestMessageSchema>;
|
|
2611
|
+
type OpenBuy = MethodParamsAndResult<OpenBuyParams, OpenBuyResult>;
|
|
2612
|
+
|
|
2613
|
+
declare const openReceiveMethodName = "wallet_openReceive";
|
|
2614
|
+
declare const openReceiveParamsSchema: v.ObjectSchema<{
|
|
2615
|
+
readonly address: v.StringSchema<undefined>;
|
|
2616
|
+
}, undefined>;
|
|
2617
|
+
type OpenReceiveParams = v.InferOutput<typeof openReceiveParamsSchema>;
|
|
2618
|
+
declare const openReceiveResultSchema: v.ObjectSchema<{
|
|
2619
|
+
readonly address: v.StringSchema<undefined>;
|
|
2620
|
+
readonly publicKey: v.StringSchema<undefined>;
|
|
2621
|
+
readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
|
|
2622
|
+
readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
|
|
2464
2623
|
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
}, undefined>;
|
|
2472
|
-
readonly spark: v.ObjectSchema<{
|
|
2473
|
-
readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
|
|
2474
|
-
}, undefined>;
|
|
2624
|
+
}, undefined>;
|
|
2625
|
+
type OpenReceiveResult = v.InferOutput<typeof openReceiveResultSchema>;
|
|
2626
|
+
declare const openReceiveRequestMessageSchema: v.ObjectSchema<{
|
|
2627
|
+
readonly method: v.LiteralSchema<"wallet_openReceive", undefined>;
|
|
2628
|
+
readonly params: v.ObjectSchema<{
|
|
2629
|
+
readonly address: v.StringSchema<undefined>;
|
|
2475
2630
|
}, undefined>;
|
|
2631
|
+
readonly id: v.StringSchema<undefined>;
|
|
2632
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2476
2633
|
}, undefined>;
|
|
2477
|
-
type
|
|
2478
|
-
|
|
2479
|
-
|
|
2634
|
+
type OpenReceiveRequestMessage = v.InferOutput<typeof openReceiveRequestMessageSchema>;
|
|
2635
|
+
type OpenReceive = MethodParamsAndResult<OpenReceiveParams, OpenReceiveResult>;
|
|
2636
|
+
|
|
2637
|
+
declare const renouncePermissionsMethodName = "wallet_renouncePermissions";
|
|
2638
|
+
declare const renouncePermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2639
|
+
type RenouncePermissionsParams = v.InferOutput<typeof renouncePermissionsParamsSchema>;
|
|
2640
|
+
declare const renouncePermissionsResultSchema: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2641
|
+
type RenouncePermissionsResult = v.InferOutput<typeof renouncePermissionsResultSchema>;
|
|
2642
|
+
declare const renouncePermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
2643
|
+
readonly method: v.LiteralSchema<"wallet_renouncePermissions", undefined>;
|
|
2480
2644
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, undefined>;
|
|
2481
2645
|
readonly id: v.StringSchema<undefined>;
|
|
2482
2646
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2483
2647
|
}, undefined>;
|
|
2484
|
-
type
|
|
2485
|
-
type
|
|
2486
|
-
|
|
2487
|
-
declare const
|
|
2488
|
-
|
|
2648
|
+
type RenouncePermissionsRequestMessage = v.InferOutput<typeof renouncePermissionsRequestMessageSchema>;
|
|
2649
|
+
type RenouncePermissions = MethodParamsAndResult<RenouncePermissionsParams, RenouncePermissionsResult>;
|
|
2650
|
+
|
|
2651
|
+
declare const requestPermissionsMethodName = "wallet_requestPermissions";
|
|
2652
|
+
declare const requestPermissionsParamsSchema: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2653
|
+
readonly type: v.LiteralSchema<"account", undefined>;
|
|
2654
|
+
readonly resourceId: v.StringSchema<undefined>;
|
|
2655
|
+
readonly actions: v.ObjectSchema<{
|
|
2656
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2657
|
+
}, undefined>;
|
|
2658
|
+
}, undefined>, v.ObjectSchema<{
|
|
2659
|
+
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
2660
|
+
readonly resourceId: v.StringSchema<undefined>;
|
|
2661
|
+
readonly actions: v.ObjectSchema<{
|
|
2662
|
+
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2663
|
+
}, undefined>;
|
|
2664
|
+
}, undefined>], undefined>, undefined>, undefined>;
|
|
2665
|
+
type RequestPermissionsParams = v.InferOutput<typeof requestPermissionsParamsSchema>;
|
|
2666
|
+
declare const requestPermissionsResultSchema: v.LiteralSchema<true, undefined>;
|
|
2667
|
+
type RequestPermissionsResult = v.InferOutput<typeof requestPermissionsResultSchema>;
|
|
2668
|
+
declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
2669
|
+
readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
|
|
2670
|
+
readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2489
2671
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
2490
2672
|
readonly resourceId: v.StringSchema<undefined>;
|
|
2491
2673
|
readonly actions: v.ObjectSchema<{
|
|
@@ -2498,120 +2680,11 @@ declare const connectParamsSchema: v.NullishSchema<v.ObjectSchema<{
|
|
|
2498
2680
|
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2499
2681
|
}, undefined>;
|
|
2500
2682
|
}, undefined>], undefined>, undefined>, undefined>;
|
|
2501
|
-
readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
|
|
2502
|
-
readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
|
|
2503
|
-
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, undefined>;
|
|
2504
|
-
}, undefined>, undefined>;
|
|
2505
|
-
type ConnectParams = v.InferOutput<typeof connectParamsSchema>;
|
|
2506
|
-
declare const connectResultSchema: v.ObjectSchema<{
|
|
2507
|
-
readonly id: v.StringSchema<undefined>;
|
|
2508
|
-
readonly addresses: v.ArraySchema<v.ObjectSchema<{
|
|
2509
|
-
readonly address: v.StringSchema<undefined>;
|
|
2510
|
-
readonly publicKey: v.StringSchema<undefined>;
|
|
2511
|
-
readonly purpose: v.EnumSchema<typeof AddressPurpose, undefined>;
|
|
2512
|
-
readonly addressType: v.EnumSchema<typeof AddressType, undefined>;
|
|
2513
|
-
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2514
|
-
}, undefined>, undefined>;
|
|
2515
|
-
readonly walletType: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
2516
|
-
readonly network: v.ObjectSchema<{
|
|
2517
|
-
readonly bitcoin: v.ObjectSchema<{
|
|
2518
|
-
readonly name: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2519
|
-
}, undefined>;
|
|
2520
|
-
readonly stacks: v.ObjectSchema<{
|
|
2521
|
-
readonly name: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2522
|
-
}, undefined>;
|
|
2523
|
-
readonly spark: v.ObjectSchema<{
|
|
2524
|
-
readonly name: v.EnumSchema<typeof SparkNetworkType, undefined>;
|
|
2525
|
-
}, undefined>;
|
|
2526
|
-
}, undefined>;
|
|
2527
|
-
}, undefined>;
|
|
2528
|
-
type ConnectResult = v.InferOutput<typeof connectResultSchema>;
|
|
2529
|
-
declare const connectRequestMessageSchema: v.ObjectSchema<{
|
|
2530
|
-
readonly method: v.LiteralSchema<"wallet_connect", undefined>;
|
|
2531
|
-
readonly params: v.NullishSchema<v.ObjectSchema<{
|
|
2532
|
-
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
2533
|
-
readonly type: v.LiteralSchema<"account", undefined>;
|
|
2534
|
-
readonly resourceId: v.StringSchema<undefined>;
|
|
2535
|
-
readonly actions: v.ObjectSchema<{
|
|
2536
|
-
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2537
|
-
}, undefined>;
|
|
2538
|
-
}, undefined>, v.ObjectSchema<{
|
|
2539
|
-
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
2540
|
-
readonly resourceId: v.StringSchema<undefined>;
|
|
2541
|
-
readonly actions: v.ObjectSchema<{
|
|
2542
|
-
readonly readNetwork: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2543
|
-
}, undefined>;
|
|
2544
|
-
}, undefined>], undefined>, undefined>, undefined>;
|
|
2545
|
-
readonly addresses: v.OptionalSchema<v.ArraySchema<v.EnumSchema<typeof AddressPurpose, undefined>, undefined>, undefined>;
|
|
2546
|
-
readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 80, "The message must not exceed 80 characters.">]>, undefined>;
|
|
2547
|
-
readonly network: v.OptionalSchema<v.EnumSchema<typeof BitcoinNetworkType, undefined>, undefined>;
|
|
2548
|
-
}, undefined>, undefined>;
|
|
2549
|
-
readonly id: v.StringSchema<undefined>;
|
|
2550
|
-
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2551
|
-
}, undefined>;
|
|
2552
|
-
type ConnectRequestMessage = v.InferOutput<typeof connectRequestMessageSchema>;
|
|
2553
|
-
type Connect = MethodParamsAndResult<ConnectParams, ConnectResult>;
|
|
2554
|
-
declare const addNetworkMethodName = "wallet_addNetwork";
|
|
2555
|
-
declare const addNetworkParamsSchema: v.VariantSchema<"chain", [v.ObjectSchema<{
|
|
2556
|
-
readonly chain: v.LiteralSchema<"bitcoin", undefined>;
|
|
2557
|
-
readonly type: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2558
|
-
readonly name: v.StringSchema<undefined>;
|
|
2559
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2560
|
-
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2561
|
-
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2562
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2563
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2564
|
-
}, undefined>, v.ObjectSchema<{
|
|
2565
|
-
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
|
2566
|
-
readonly name: v.StringSchema<undefined>;
|
|
2567
|
-
readonly type: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2568
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2569
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2570
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2571
|
-
}, undefined>, v.ObjectSchema<{
|
|
2572
|
-
readonly chain: v.LiteralSchema<"starknet", undefined>;
|
|
2573
|
-
readonly name: v.StringSchema<undefined>;
|
|
2574
|
-
readonly type: v.EnumSchema<typeof StarknetNetworkType, undefined>;
|
|
2575
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2576
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2577
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2578
|
-
}, undefined>], undefined>;
|
|
2579
|
-
type AddNetworkParams = v.InferOutput<typeof addNetworkParamsSchema>;
|
|
2580
|
-
declare const addNetworkRequestMessageSchema: v.ObjectSchema<{
|
|
2581
|
-
readonly method: v.LiteralSchema<"wallet_addNetwork", undefined>;
|
|
2582
|
-
readonly params: v.VariantSchema<"chain", [v.ObjectSchema<{
|
|
2583
|
-
readonly chain: v.LiteralSchema<"bitcoin", undefined>;
|
|
2584
|
-
readonly type: v.EnumSchema<typeof BitcoinNetworkType, undefined>;
|
|
2585
|
-
readonly name: v.StringSchema<undefined>;
|
|
2586
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2587
|
-
readonly rpcFallbackUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2588
|
-
readonly indexerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2589
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2590
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2591
|
-
}, undefined>, v.ObjectSchema<{
|
|
2592
|
-
readonly chain: v.LiteralSchema<"stacks", undefined>;
|
|
2593
|
-
readonly name: v.StringSchema<undefined>;
|
|
2594
|
-
readonly type: v.EnumSchema<typeof StacksNetworkType, undefined>;
|
|
2595
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2596
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2597
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2598
|
-
}, undefined>, v.ObjectSchema<{
|
|
2599
|
-
readonly chain: v.LiteralSchema<"starknet", undefined>;
|
|
2600
|
-
readonly name: v.StringSchema<undefined>;
|
|
2601
|
-
readonly type: v.EnumSchema<typeof StarknetNetworkType, undefined>;
|
|
2602
|
-
readonly rpcUrl: v.StringSchema<undefined>;
|
|
2603
|
-
readonly blockExplorerUrl: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
2604
|
-
readonly switch: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
2605
|
-
}, undefined>], undefined>;
|
|
2606
2683
|
readonly id: v.StringSchema<undefined>;
|
|
2607
2684
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
2608
2685
|
}, undefined>;
|
|
2609
|
-
type
|
|
2610
|
-
|
|
2611
|
-
readonly id: v.StringSchema<undefined>;
|
|
2612
|
-
}, undefined>;
|
|
2613
|
-
type AddNetworkResult = v.InferOutput<typeof addNetworkResultSchema>;
|
|
2614
|
-
type AddNetwork = MethodParamsAndResult<AddNetworkParams, AddNetworkResult>;
|
|
2686
|
+
type RequestPermissionsRequestMessage = v.InferOutput<typeof requestPermissionsRequestMessageSchema>;
|
|
2687
|
+
type RequestPermissions = MethodParamsAndResult<RequestPermissionsParams, RequestPermissionsResult>;
|
|
2615
2688
|
|
|
2616
2689
|
declare const walletTypes: readonly ["software", "ledger", "keystone"];
|
|
2617
2690
|
declare const walletTypeSchema: v.PicklistSchema<readonly ["software", "ledger", "keystone"], undefined>;
|
|
@@ -2683,6 +2756,9 @@ type WalletRequests = {
|
|
|
2683
2756
|
wallet_getWalletType: GetWalletType;
|
|
2684
2757
|
wallet_renouncePermissions: RenouncePermissions;
|
|
2685
2758
|
wallet_requestPermissions: RequestPermissions;
|
|
2759
|
+
wallet_openReceive: OpenReceive;
|
|
2760
|
+
wallet_openBridge: OpenBridge;
|
|
2761
|
+
wallet_openBuy: OpenBuy;
|
|
2686
2762
|
};
|
|
2687
2763
|
type Requests = BtcRequests & StxRequests & SparkRequests & RunesRequests & WalletRequests & OrdinalsRequests;
|
|
2688
2764
|
type Return<Method> = Method extends keyof Requests ? Requests[Method]['result'] : never;
|
|
@@ -2731,4 +2807,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
|
|
|
2731
2807
|
declare const DefaultAdaptersInfo: Record<string, Provider>;
|
|
2732
2808
|
declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
|
|
2733
2809
|
|
|
2734
|
-
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 };
|
|
2810
|
+
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 OpenBridge, type OpenBridgeParams, type OpenBridgeRequestMessage, type OpenBridgeResult, type OpenBuy, type OpenBuyParams, type OpenBuyRequestMessage, type OpenBuyResult, 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, openBridgeMethodName, openBridgeParamsSchema, openBridgeRequestMessageSchema, openBridgeResultSchema, openBuyMethodName, openBuyParamsSchema, openBuyRequestMessageSchema, openBuyResultSchema, 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 };
|