@sats-connect/core 0.2.2-00a8b37 → 0.2.2-14f5613
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 +12 -8
- package/dist/index.mjs +15 -11
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -104,17 +104,10 @@ declare const networkChangeSchema: v.ObjectSchema<{
|
|
|
104
104
|
readonly type: v.LiteralSchema<"networkChange", undefined>;
|
|
105
105
|
}, undefined>;
|
|
106
106
|
type NetworkChangeEvent = v.InferOutput<typeof networkChangeSchema>;
|
|
107
|
-
declare const disconnectEventName = "disconnect";
|
|
108
|
-
declare const disconnectSchema: v.ObjectSchema<{
|
|
109
|
-
readonly type: v.LiteralSchema<"disconnect", undefined>;
|
|
110
|
-
}, undefined>;
|
|
111
|
-
type DisconnectEvent = v.InferOutput<typeof disconnectSchema>;
|
|
112
107
|
declare const walletEventSchema: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
113
108
|
readonly type: v.LiteralSchema<"accountChange", undefined>;
|
|
114
109
|
}, undefined>, v.ObjectSchema<{
|
|
115
110
|
readonly type: v.LiteralSchema<"networkChange", undefined>;
|
|
116
|
-
}, undefined>, v.ObjectSchema<{
|
|
117
|
-
readonly type: v.LiteralSchema<"disconnect", undefined>;
|
|
118
111
|
}, undefined>], undefined>;
|
|
119
112
|
type WalletEvent = v.InferOutput<typeof walletEventSchema>;
|
|
120
113
|
type AddListener = <const WalletEventName extends WalletEvent['type']>(eventName: WalletEventName, cb: (event: Extract<WalletEvent, {
|
|
@@ -1076,6 +1069,16 @@ declare const getWalletTypeRequestMessageSchema: v.ObjectSchema<{
|
|
|
1076
1069
|
readonly params: v.OptionalSchema<v.UnionSchema<[v.ArraySchema<v.UnknownSchema, undefined>, v.LooseObjectSchema<{}, undefined>, v.NullSchema<undefined>], undefined>, never>;
|
|
1077
1070
|
}, undefined>;
|
|
1078
1071
|
type GetWalletType = MethodParamsAndResult<v.InferOutput<typeof getWalletTypeParamsSchema>, v.InferOutput<typeof getWalletTypeResultSchema>>;
|
|
1072
|
+
declare const getPermissionsMethodName = "wallet_getPermissions";
|
|
1073
|
+
declare const getPermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1074
|
+
declare const getPermissionsResultSchema: v.ArraySchema<v.StringSchema<undefined>, undefined>;
|
|
1075
|
+
declare const getPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
1076
|
+
readonly method: v.LiteralSchema<"wallet_getPermissions", undefined>;
|
|
1077
|
+
readonly id: v.StringSchema<undefined>;
|
|
1078
|
+
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1079
|
+
readonly params: v.OptionalSchema<v.UnionSchema<[v.ArraySchema<v.UnknownSchema, undefined>, v.LooseObjectSchema<{}, undefined>, v.NullSchema<undefined>], undefined>, never>;
|
|
1080
|
+
}, undefined>;
|
|
1081
|
+
type GetPermissions = MethodParamsAndResult<v.InferOutput<typeof getPermissionsParamsSchema>, v.InferOutput<typeof getPermissionsResultSchema>>;
|
|
1079
1082
|
|
|
1080
1083
|
declare const walletTypes: readonly ["software", "ledger"];
|
|
1081
1084
|
declare const walletTypeSchema: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
|
|
@@ -1123,6 +1126,7 @@ interface WalletRequests {
|
|
|
1123
1126
|
wallet_requestPermissions: RequestPermissions;
|
|
1124
1127
|
wallet_renouncePermissions: RenouncePermissions;
|
|
1125
1128
|
wallet_getWalletType: GetWalletType;
|
|
1129
|
+
wallet_getPermissions: GetPermissions;
|
|
1126
1130
|
}
|
|
1127
1131
|
type Requests = BtcRequests & StxRequests & RunesRequests & WalletRequests & OrdinalsRequests;
|
|
1128
1132
|
type Return<Method> = Method extends keyof Requests ? Requests[Method]['result'] : never;
|
|
@@ -1155,4 +1159,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
|
|
|
1155
1159
|
declare const DefaultAdaptersInfo: Record<string, Provider>;
|
|
1156
1160
|
declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
|
|
1157
1161
|
|
|
1158
|
-
export { type AccountChangeEvent, type AddListener, type Address$1 as Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type CallContractParams, type CallContractResult, type Capability, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type DeployContractParams, type DeployContractResult, type
|
|
1162
|
+
export { type AccountChangeEvent, type AddListener, type Address$1 as Address, AddressPurpose, AddressType, BaseAdapter, type BitcoinNetwork, BitcoinNetworkType, type BitcoinProvider, type BtcRequestMethod, type BtcRequests, type CallContractParams, type CallContractResult, type Capability, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type DeployContractParams, type DeployContractResult, type EstimateRbfOrder, type EstimateRunesEtch, type EstimateRunesEtchParams, type EstimateRunesEtchResult, type EstimateRunesMint, type EstimateRunesMintParams, type EstimateRunesMintResult, type EtchRunes, type EtchRunesParams, type EtchRunesResult, 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 GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetOrder, type GetPermissions, type GetRunesBalance, type GetRunesBalanceParams, type GetRunesBalanceRequestMessage, type GetRunesBalanceResult, type GetWalletType, type InputToSign, MessageSigningProtocols, type MethodParamsAndResult, type MintRunes, type MintRunesParams, type MintRunesResult, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, type Provider, type PsbtPayload, type RbfOrder, type Recipient$2 as Recipient, type RenouncePermissions, type RequestOptions, type RequestPayload, type RequestPermissions, 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 RunesRequestMethod, type RunesRequests, SatsConnectAdapter, type SendBtcTransactionOptions, type SendBtcTransactionPayload, type SendBtcTransactionResponse, type SendInscriptions, type SendTransfer, type SendTransferParams, 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 SignPsbtResult, type SignStructuredMessageResult, type SignStxMessageParams, type SignStxMessageResult, type SignTransactionOptions, type SignTransactionPayload, type SignTransactionResponse, type StxCallContract, type StxDeployContract, type StxGetAccounts, type StxGetAccountsResult, type StxGetAddresses, type StxGetAddressesParams, type StxGetAddressesRequestMessage, type StxGetAddressesResult, type StxRequestMethod, type StxRequests, type StxSignStructuredMessage, type StxSignStxMessage, type StxSignTransaction, type StxSignTransactionParams, type StxSignTransactionRequestMessage, type StxSignTransactionResult, type StxTransferStx, type SupportedWallet, type TransferRunes, type TransferRunesParams, type TransferRunesRequest, type TransferRunesResult, TransferRunesResultSchema, type TransferStxParams, type TransferStxResult, type WalletEvent, type WalletRequests, type WalletType, accountChangeEventName, accountChangeSchema, addListener, addressSchema, createInscription, createRepeatInscriptions, defaultAdapters, getAccountsMethodName, getAccountsParamsSchema, getAccountsRequestMessageSchema, getAccountsResultSchema, getAddress, getAddressesMethodName, getAddressesParamsSchema, getAddressesRequestMessageSchema, getAddressesResultSchema, getBalanceMethodName, getBalanceParamsSchema, getBalanceRequestMessageSchema, getBalanceResultSchema, getCapabilities, getDefaultProvider, getInfoMethodName, getInfoParamsSchema, getInfoRequestMessageSchema, getInfoResultSchema, getInscriptionsMethodName, getInscriptionsParamsSchema, getInscriptionsResultSchema, getInscriptionsSchema, getPermissionsMethodName, getPermissionsParamsSchema, getPermissionsRequestMessageSchema, getPermissionsResultSchema, getProviderById, getProviderOrThrow, getProviders, getRunesBalanceMethodName, getRunesBalanceParamsSchema, getRunesBalanceRequestMessageSchema, getRunesBalanceResultSchema, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, removeDefaultProvider, renouncePermissionsMethodName, renouncePermissionsParamsSchema, renouncePermissionsRequestMessageSchema, renouncePermissionsResultSchema, request, requestPermissionsMethodName, requestPermissionsParamsSchema, requestPermissionsRequestMessageSchema, requestPermissionsResultSchema, rpcErrorResponseMessageSchema, rpcRequestMessageSchema, rpcResponseMessageSchema, rpcSuccessResponseMessageSchema, sendBtcTransaction, sendInscriptionsMethodName, sendInscriptionsParamsSchema, sendInscriptionsResultSchema, sendInscriptionsSchema, setDefaultProvider, signMessage, signMessageMethodName, signMessageParamsSchema, signMessageRequestMessageSchema, signMessageResultSchema, signMultipleTransactions, signTransaction, stxGetAddressesMethodName, stxGetAddressesParamsSchema, stxGetAddressesRequestMessageSchema, stxGetAddressesResultSchema, stxSignTransactionMethodName, stxSignTransactionParamsSchema, stxSignTransactionRequestMessageSchema, stxSignTransactionResultSchema, transferRunesMethodName, transferRunesParamsSchema, transferRunesRequestSchema, walletEventSchema, walletTypeSchema, walletTypes };
|
package/dist/index.mjs
CHANGED
|
@@ -11,15 +11,7 @@ var networkChangeEventName = "networkChange";
|
|
|
11
11
|
var networkChangeSchema = v.object({
|
|
12
12
|
type: v.literal(networkChangeEventName)
|
|
13
13
|
});
|
|
14
|
-
var
|
|
15
|
-
var disconnectSchema = v.object({
|
|
16
|
-
type: v.literal(disconnectEventName)
|
|
17
|
-
});
|
|
18
|
-
var walletEventSchema = v.variant("type", [
|
|
19
|
-
accountChangeSchema,
|
|
20
|
-
networkChangeSchema,
|
|
21
|
-
disconnectSchema
|
|
22
|
-
]);
|
|
14
|
+
var walletEventSchema = v.variant("type", [accountChangeSchema, networkChangeSchema]);
|
|
23
15
|
|
|
24
16
|
// src/provider/index.ts
|
|
25
17
|
async function getProviderOrThrow(getProvider) {
|
|
@@ -417,6 +409,16 @@ var getWalletTypeRequestMessageSchema = v7.object({
|
|
|
417
409
|
id: v7.string()
|
|
418
410
|
}).entries
|
|
419
411
|
});
|
|
412
|
+
var getPermissionsMethodName = "wallet_getPermissions";
|
|
413
|
+
var getPermissionsParamsSchema = v7.nullish(v7.null());
|
|
414
|
+
var getPermissionsResultSchema = v7.array(v7.string());
|
|
415
|
+
var getPermissionsRequestMessageSchema = v7.object({
|
|
416
|
+
...rpcRequestMessageSchema.entries,
|
|
417
|
+
...v7.object({
|
|
418
|
+
method: v7.literal(getPermissionsMethodName),
|
|
419
|
+
id: v7.string()
|
|
420
|
+
}).entries
|
|
421
|
+
});
|
|
420
422
|
|
|
421
423
|
// src/request/types/runesMethods.ts
|
|
422
424
|
import * as v8 from "valibot";
|
|
@@ -1469,8 +1471,6 @@ export {
|
|
|
1469
1471
|
createInscription,
|
|
1470
1472
|
createRepeatInscriptions,
|
|
1471
1473
|
defaultAdapters,
|
|
1472
|
-
disconnectEventName,
|
|
1473
|
-
disconnectSchema,
|
|
1474
1474
|
getAccountsMethodName,
|
|
1475
1475
|
getAccountsParamsSchema,
|
|
1476
1476
|
getAccountsRequestMessageSchema,
|
|
@@ -1494,6 +1494,10 @@ export {
|
|
|
1494
1494
|
getInscriptionsParamsSchema,
|
|
1495
1495
|
getInscriptionsResultSchema,
|
|
1496
1496
|
getInscriptionsSchema,
|
|
1497
|
+
getPermissionsMethodName,
|
|
1498
|
+
getPermissionsParamsSchema,
|
|
1499
|
+
getPermissionsRequestMessageSchema,
|
|
1500
|
+
getPermissionsResultSchema,
|
|
1497
1501
|
getProviderById,
|
|
1498
1502
|
getProviderOrThrow,
|
|
1499
1503
|
getProviders,
|