@sats-connect/core 0.4.0-7721c7c → 0.4.0-8f3e1e5
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 +323 -478
- package/dist/index.mjs +12 -6
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1050,369 +1050,275 @@ type StxSignTransactionRequestMessage = v.InferOutput<typeof stxSignTransactionR
|
|
|
1050
1050
|
type StxSignTransaction = MethodParamsAndResult<StxSignTransactionParams, StxSignTransactionResult>;
|
|
1051
1051
|
|
|
1052
1052
|
/**
|
|
1053
|
-
* Permissions with the clientId field omitted. Used for
|
|
1054
|
-
* since the wallet performs authentication based on the
|
|
1055
|
-
* should not rely on the client authenticating
|
|
1053
|
+
* Permissions with the clientId field omitted and optional actions. Used for
|
|
1054
|
+
* permission requests, since the wallet performs authentication based on the
|
|
1055
|
+
* client's tab origin and should not rely on the client authenticating
|
|
1056
|
+
* themselves.
|
|
1056
1057
|
*/
|
|
1057
|
-
declare const
|
|
1058
|
-
readonly
|
|
1059
|
-
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1060
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1061
|
-
readonly actions: v.ObjectSchema<{
|
|
1058
|
+
declare const permissionTemplate: v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1059
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1062
1060
|
readonly read: v.BooleanSchema<undefined>;
|
|
1063
1061
|
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1064
1062
|
readonly rename: v.BooleanSchema<undefined>;
|
|
1065
|
-
}, undefined
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1071
|
-
readonly actions: v.ObjectSchema<{
|
|
1072
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1073
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1074
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1075
|
-
}, undefined>;
|
|
1076
|
-
}, "clientId">;
|
|
1077
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1078
|
-
type: "account";
|
|
1079
|
-
resourceId: string & v.Brand<"AccountResourceId">;
|
|
1080
|
-
actions: {
|
|
1081
|
-
read: boolean;
|
|
1082
|
-
autoSign: boolean;
|
|
1083
|
-
rename: boolean;
|
|
1063
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1064
|
+
readonly entries: {
|
|
1065
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1066
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1067
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1084
1068
|
};
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1069
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1070
|
+
read?: boolean | undefined;
|
|
1071
|
+
autoSign?: boolean | undefined;
|
|
1072
|
+
rename?: boolean | undefined;
|
|
1073
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1074
|
+
readonly _types?: {
|
|
1075
|
+
readonly input: {
|
|
1076
|
+
read?: boolean | undefined;
|
|
1077
|
+
autoSign?: boolean | undefined;
|
|
1078
|
+
rename?: boolean | undefined;
|
|
1094
1079
|
};
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
actions: {
|
|
1100
|
-
read: boolean;
|
|
1101
|
-
autoSign: boolean;
|
|
1102
|
-
rename: boolean;
|
|
1080
|
+
readonly output: {
|
|
1081
|
+
read?: boolean | undefined;
|
|
1082
|
+
autoSign?: boolean | undefined;
|
|
1083
|
+
rename?: boolean | undefined;
|
|
1103
1084
|
};
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
readonly
|
|
1109
|
-
|
|
1110
|
-
readonly
|
|
1111
|
-
readonly actions: v.ObjectSchema<{
|
|
1085
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1086
|
+
} | undefined;
|
|
1087
|
+
};
|
|
1088
|
+
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1089
|
+
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1090
|
+
}, undefined>, v.ObjectSchema<{
|
|
1091
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1112
1092
|
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1113
1093
|
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1114
1094
|
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1115
1095
|
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1116
|
-
}, undefined
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
readonly actions: v.ObjectSchema<{
|
|
1123
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1124
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1125
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1126
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1127
|
-
}, undefined>;
|
|
1128
|
-
}, "clientId">;
|
|
1129
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1130
|
-
type: "wallet";
|
|
1131
|
-
resourceId: "wallet";
|
|
1132
|
-
actions: {
|
|
1133
|
-
addPrivateKey: boolean;
|
|
1134
|
-
openPopup: boolean;
|
|
1135
|
-
openFullPage: boolean;
|
|
1136
|
-
readAllAccounts: boolean;
|
|
1096
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1097
|
+
readonly entries: {
|
|
1098
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1099
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1100
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1101
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1137
1102
|
};
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1103
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1104
|
+
addPrivateKey?: boolean | undefined;
|
|
1105
|
+
openPopup?: boolean | undefined;
|
|
1106
|
+
openFullPage?: boolean | undefined;
|
|
1107
|
+
readAllAccounts?: boolean | undefined;
|
|
1108
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1109
|
+
readonly _types?: {
|
|
1110
|
+
readonly input: {
|
|
1111
|
+
addPrivateKey?: boolean | undefined;
|
|
1112
|
+
openPopup?: boolean | undefined;
|
|
1113
|
+
openFullPage?: boolean | undefined;
|
|
1114
|
+
readAllAccounts?: boolean | undefined;
|
|
1148
1115
|
};
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
addPrivateKey: boolean;
|
|
1155
|
-
openPopup: boolean;
|
|
1156
|
-
openFullPage: boolean;
|
|
1157
|
-
readAllAccounts: boolean;
|
|
1116
|
+
readonly output: {
|
|
1117
|
+
addPrivateKey?: boolean | undefined;
|
|
1118
|
+
openPopup?: boolean | undefined;
|
|
1119
|
+
openFullPage?: boolean | undefined;
|
|
1120
|
+
readAllAccounts?: boolean | undefined;
|
|
1158
1121
|
};
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
}
|
|
1162
|
-
|
|
1163
|
-
|
|
1122
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1123
|
+
} | undefined;
|
|
1124
|
+
};
|
|
1125
|
+
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1126
|
+
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1127
|
+
}, undefined>], undefined>;
|
|
1128
|
+
type PermissionWithoutClientId = v.InferOutput<typeof permissionTemplate>;
|
|
1164
1129
|
declare const requestPermissionsMethodName = "wallet_requestPermissions";
|
|
1165
|
-
declare const requestPermissionsParamsSchema: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [
|
|
1166
|
-
readonly
|
|
1167
|
-
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1168
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1169
|
-
readonly actions: v.ObjectSchema<{
|
|
1130
|
+
declare const requestPermissionsParamsSchema: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1131
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1170
1132
|
readonly read: v.BooleanSchema<undefined>;
|
|
1171
1133
|
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1172
1134
|
readonly rename: v.BooleanSchema<undefined>;
|
|
1173
|
-
}, undefined
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1179
|
-
readonly actions: v.ObjectSchema<{
|
|
1180
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1181
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1182
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1183
|
-
}, undefined>;
|
|
1184
|
-
}, "clientId">;
|
|
1185
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1186
|
-
type: "account";
|
|
1187
|
-
resourceId: string & v.Brand<"AccountResourceId">;
|
|
1188
|
-
actions: {
|
|
1189
|
-
read: boolean;
|
|
1190
|
-
autoSign: boolean;
|
|
1191
|
-
rename: boolean;
|
|
1135
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1136
|
+
readonly entries: {
|
|
1137
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1138
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1139
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1192
1140
|
};
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1141
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1142
|
+
read?: boolean | undefined;
|
|
1143
|
+
autoSign?: boolean | undefined;
|
|
1144
|
+
rename?: boolean | undefined;
|
|
1145
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1146
|
+
readonly _types?: {
|
|
1147
|
+
readonly input: {
|
|
1148
|
+
read?: boolean | undefined;
|
|
1149
|
+
autoSign?: boolean | undefined;
|
|
1150
|
+
rename?: boolean | undefined;
|
|
1202
1151
|
};
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
actions: {
|
|
1208
|
-
read: boolean;
|
|
1209
|
-
autoSign: boolean;
|
|
1210
|
-
rename: boolean;
|
|
1152
|
+
readonly output: {
|
|
1153
|
+
read?: boolean | undefined;
|
|
1154
|
+
autoSign?: boolean | undefined;
|
|
1155
|
+
rename?: boolean | undefined;
|
|
1211
1156
|
};
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
}
|
|
1215
|
-
|
|
1216
|
-
readonly
|
|
1217
|
-
|
|
1218
|
-
readonly
|
|
1219
|
-
readonly actions: v.ObjectSchema<{
|
|
1157
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1158
|
+
} | undefined;
|
|
1159
|
+
};
|
|
1160
|
+
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1161
|
+
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1162
|
+
}, undefined>, v.ObjectSchema<{
|
|
1163
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1220
1164
|
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1221
1165
|
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1222
1166
|
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1223
1167
|
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1224
|
-
}, undefined
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
readonly actions: v.ObjectSchema<{
|
|
1231
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1232
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1233
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1234
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1235
|
-
}, undefined>;
|
|
1236
|
-
}, "clientId">;
|
|
1237
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1238
|
-
type: "wallet";
|
|
1239
|
-
resourceId: "wallet";
|
|
1240
|
-
actions: {
|
|
1241
|
-
addPrivateKey: boolean;
|
|
1242
|
-
openPopup: boolean;
|
|
1243
|
-
openFullPage: boolean;
|
|
1244
|
-
readAllAccounts: boolean;
|
|
1168
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1169
|
+
readonly entries: {
|
|
1170
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1171
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1172
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1173
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1245
1174
|
};
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1175
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1176
|
+
addPrivateKey?: boolean | undefined;
|
|
1177
|
+
openPopup?: boolean | undefined;
|
|
1178
|
+
openFullPage?: boolean | undefined;
|
|
1179
|
+
readAllAccounts?: boolean | undefined;
|
|
1180
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1181
|
+
readonly _types?: {
|
|
1182
|
+
readonly input: {
|
|
1183
|
+
addPrivateKey?: boolean | undefined;
|
|
1184
|
+
openPopup?: boolean | undefined;
|
|
1185
|
+
openFullPage?: boolean | undefined;
|
|
1186
|
+
readAllAccounts?: boolean | undefined;
|
|
1256
1187
|
};
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
addPrivateKey: boolean;
|
|
1263
|
-
openPopup: boolean;
|
|
1264
|
-
openFullPage: boolean;
|
|
1265
|
-
readAllAccounts: boolean;
|
|
1188
|
+
readonly output: {
|
|
1189
|
+
addPrivateKey?: boolean | undefined;
|
|
1190
|
+
openPopup?: boolean | undefined;
|
|
1191
|
+
openFullPage?: boolean | undefined;
|
|
1192
|
+
readAllAccounts?: boolean | undefined;
|
|
1266
1193
|
};
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
}
|
|
1270
|
-
|
|
1194
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1195
|
+
} | undefined;
|
|
1196
|
+
};
|
|
1197
|
+
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1198
|
+
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1199
|
+
}, undefined>], undefined>, undefined>, never>;
|
|
1200
|
+
type RequestPermissionsParams = v.InferOutput<typeof requestPermissionsParamsSchema>;
|
|
1271
1201
|
declare const requestPermissionsResultSchema: v.LiteralSchema<true, undefined>;
|
|
1202
|
+
type RequestPermissionsResult = v.InferOutput<typeof requestPermissionsResultSchema>;
|
|
1272
1203
|
declare const requestPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
1273
1204
|
readonly method: v.LiteralSchema<"wallet_requestPermissions", undefined>;
|
|
1274
|
-
readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [
|
|
1275
|
-
readonly
|
|
1276
|
-
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1277
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1278
|
-
readonly actions: v.ObjectSchema<{
|
|
1205
|
+
readonly params: v.NullishSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1206
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1279
1207
|
readonly read: v.BooleanSchema<undefined>;
|
|
1280
1208
|
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1281
1209
|
readonly rename: v.BooleanSchema<undefined>;
|
|
1282
|
-
}, undefined
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1288
|
-
readonly actions: v.ObjectSchema<{
|
|
1289
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1290
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1291
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1292
|
-
}, undefined>;
|
|
1293
|
-
}, "clientId">;
|
|
1294
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1295
|
-
type: "account";
|
|
1296
|
-
resourceId: string & v.Brand<"AccountResourceId">;
|
|
1297
|
-
actions: {
|
|
1298
|
-
read: boolean;
|
|
1299
|
-
autoSign: boolean;
|
|
1300
|
-
rename: boolean;
|
|
1210
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1211
|
+
readonly entries: {
|
|
1212
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1213
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1214
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1301
1215
|
};
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1216
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1217
|
+
read?: boolean | undefined;
|
|
1218
|
+
autoSign?: boolean | undefined;
|
|
1219
|
+
rename?: boolean | undefined;
|
|
1220
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1221
|
+
readonly _types?: {
|
|
1222
|
+
readonly input: {
|
|
1223
|
+
read?: boolean | undefined;
|
|
1224
|
+
autoSign?: boolean | undefined;
|
|
1225
|
+
rename?: boolean | undefined;
|
|
1311
1226
|
};
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
actions: {
|
|
1317
|
-
read: boolean;
|
|
1318
|
-
autoSign: boolean;
|
|
1319
|
-
rename: boolean;
|
|
1227
|
+
readonly output: {
|
|
1228
|
+
read?: boolean | undefined;
|
|
1229
|
+
autoSign?: boolean | undefined;
|
|
1230
|
+
rename?: boolean | undefined;
|
|
1320
1231
|
};
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
}
|
|
1324
|
-
|
|
1325
|
-
readonly
|
|
1326
|
-
|
|
1327
|
-
readonly
|
|
1328
|
-
readonly actions: v.ObjectSchema<{
|
|
1232
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1233
|
+
} | undefined;
|
|
1234
|
+
};
|
|
1235
|
+
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1236
|
+
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1237
|
+
}, undefined>, v.ObjectSchema<{
|
|
1238
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1329
1239
|
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1330
1240
|
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1331
1241
|
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1332
1242
|
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1333
|
-
}, undefined
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
readonly actions: v.ObjectSchema<{
|
|
1340
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1341
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1342
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1343
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1344
|
-
}, undefined>;
|
|
1345
|
-
}, "clientId">;
|
|
1346
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1347
|
-
type: "wallet";
|
|
1348
|
-
resourceId: "wallet";
|
|
1349
|
-
actions: {
|
|
1350
|
-
addPrivateKey: boolean;
|
|
1351
|
-
openPopup: boolean;
|
|
1352
|
-
openFullPage: boolean;
|
|
1353
|
-
readAllAccounts: boolean;
|
|
1243
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1244
|
+
readonly entries: {
|
|
1245
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1246
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1247
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1248
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1354
1249
|
};
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1250
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1251
|
+
addPrivateKey?: boolean | undefined;
|
|
1252
|
+
openPopup?: boolean | undefined;
|
|
1253
|
+
openFullPage?: boolean | undefined;
|
|
1254
|
+
readAllAccounts?: boolean | undefined;
|
|
1255
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1256
|
+
readonly _types?: {
|
|
1257
|
+
readonly input: {
|
|
1258
|
+
addPrivateKey?: boolean | undefined;
|
|
1259
|
+
openPopup?: boolean | undefined;
|
|
1260
|
+
openFullPage?: boolean | undefined;
|
|
1261
|
+
readAllAccounts?: boolean | undefined;
|
|
1365
1262
|
};
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
addPrivateKey: boolean;
|
|
1372
|
-
openPopup: boolean;
|
|
1373
|
-
openFullPage: boolean;
|
|
1374
|
-
readAllAccounts: boolean;
|
|
1263
|
+
readonly output: {
|
|
1264
|
+
addPrivateKey?: boolean | undefined;
|
|
1265
|
+
openPopup?: boolean | undefined;
|
|
1266
|
+
openFullPage?: boolean | undefined;
|
|
1267
|
+
readAllAccounts?: boolean | undefined;
|
|
1375
1268
|
};
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
}
|
|
1379
|
-
|
|
1269
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1270
|
+
} | undefined;
|
|
1271
|
+
};
|
|
1272
|
+
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1273
|
+
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1274
|
+
}, undefined>], undefined>, undefined>, never>;
|
|
1380
1275
|
readonly id: v.StringSchema<undefined>;
|
|
1381
1276
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1382
1277
|
}, undefined>;
|
|
1383
|
-
type
|
|
1278
|
+
type RequestPermissionsRequestMessage = v.InferOutput<typeof requestPermissionsRequestMessageSchema>;
|
|
1279
|
+
type RequestPermissions = MethodParamsAndResult<RequestPermissionsParams, RequestPermissionsResult>;
|
|
1384
1280
|
declare const renouncePermissionsMethodName = "wallet_renouncePermissions";
|
|
1385
1281
|
declare const renouncePermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1282
|
+
type RenouncePermissionsParams = v.InferOutput<typeof renouncePermissionsParamsSchema>;
|
|
1386
1283
|
declare const renouncePermissionsResultSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1284
|
+
type RenouncePermissionsResult = v.InferOutput<typeof renouncePermissionsResultSchema>;
|
|
1387
1285
|
declare const renouncePermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
1388
1286
|
readonly method: v.LiteralSchema<"wallet_renouncePermissions", undefined>;
|
|
1389
1287
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1390
1288
|
readonly id: v.StringSchema<undefined>;
|
|
1391
1289
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1392
1290
|
}, undefined>;
|
|
1393
|
-
type
|
|
1291
|
+
type RenouncePermissionsRequestMessage = v.InferOutput<typeof renouncePermissionsRequestMessageSchema>;
|
|
1292
|
+
type RenouncePermissions = MethodParamsAndResult<RenouncePermissionsParams, RenouncePermissionsResult>;
|
|
1394
1293
|
declare const disconnectMethodName = "wallet_disconnect";
|
|
1395
1294
|
declare const disconnectParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1295
|
+
type DisconnectParams = v.InferOutput<typeof disconnectParamsSchema>;
|
|
1396
1296
|
declare const disconnectResultSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1297
|
+
type DisconnectResult = v.InferOutput<typeof disconnectResultSchema>;
|
|
1397
1298
|
declare const disconnectRequestMessageSchema: v.ObjectSchema<{
|
|
1398
1299
|
readonly method: v.LiteralSchema<"wallet_disconnect", undefined>;
|
|
1399
1300
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1400
1301
|
readonly id: v.StringSchema<undefined>;
|
|
1401
1302
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1402
1303
|
}, undefined>;
|
|
1403
|
-
type
|
|
1304
|
+
type DisconnectRequestMessage = v.InferOutput<typeof disconnectRequestMessageSchema>;
|
|
1305
|
+
type Disconnect = MethodParamsAndResult<DisconnectParams, DisconnectResult>;
|
|
1404
1306
|
declare const getWalletTypeMethodName = "wallet_getWalletType";
|
|
1405
1307
|
declare const getWalletTypeParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1308
|
+
type GetWalletTypeParams = v.InferOutput<typeof getWalletTypeParamsSchema>;
|
|
1406
1309
|
declare const getWalletTypeResultSchema: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
|
|
1310
|
+
type GetWalletTypeResult = v.InferOutput<typeof getWalletTypeResultSchema>;
|
|
1407
1311
|
declare const getWalletTypeRequestMessageSchema: v.ObjectSchema<{
|
|
1408
1312
|
readonly method: v.LiteralSchema<"wallet_getWalletType", undefined>;
|
|
1409
1313
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1410
1314
|
readonly id: v.StringSchema<undefined>;
|
|
1411
1315
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1412
1316
|
}, undefined>;
|
|
1413
|
-
type
|
|
1317
|
+
type GetWalletTypeRequestMessage = v.InferOutput<typeof getWalletTypeRequestMessageSchema>;
|
|
1318
|
+
type GetWalletType = MethodParamsAndResult<GetWalletTypeParams, GetWalletTypeResult>;
|
|
1414
1319
|
declare const getCurrentPermissionsMethodName = "wallet_getCurrentPermissions";
|
|
1415
1320
|
declare const getCurrentPermissionsParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1321
|
+
type GetCurrentPermissionsParams = v.InferOutput<typeof getCurrentPermissionsParamsSchema>;
|
|
1416
1322
|
declare const getCurrentPermissionsResultSchema: v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1417
1323
|
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1418
1324
|
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
@@ -1433,15 +1339,18 @@ declare const getCurrentPermissionsResultSchema: v.ArraySchema<v.VariantSchema<"
|
|
|
1433
1339
|
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1434
1340
|
}, undefined>;
|
|
1435
1341
|
}, undefined>], undefined>, undefined>;
|
|
1342
|
+
type GetCurrentPermissionsResult = v.InferOutput<typeof getCurrentPermissionsResultSchema>;
|
|
1436
1343
|
declare const getCurrentPermissionsRequestMessageSchema: v.ObjectSchema<{
|
|
1437
1344
|
readonly method: v.LiteralSchema<"wallet_getCurrentPermissions", undefined>;
|
|
1438
1345
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1439
1346
|
readonly id: v.StringSchema<undefined>;
|
|
1440
1347
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1441
1348
|
}, undefined>;
|
|
1442
|
-
type
|
|
1349
|
+
type GetCurrentPermissionsRequestMessage = v.InferOutput<typeof getCurrentPermissionsRequestMessageSchema>;
|
|
1350
|
+
type GetCurrentPermissions = MethodParamsAndResult<GetCurrentPermissionsParams, GetCurrentPermissionsResult>;
|
|
1443
1351
|
declare const getAccountMethodName = "wallet_getAccount";
|
|
1444
1352
|
declare const getAccountParamsSchema: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1353
|
+
type GetAccountParams = v.InferOutput<typeof getAccountParamsSchema>;
|
|
1445
1354
|
declare const getAccountResultSchema: v.ObjectSchema<{
|
|
1446
1355
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.BrandAction<string, "AccountId">]>;
|
|
1447
1356
|
readonly addresses: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -1452,21 +1361,25 @@ declare const getAccountResultSchema: v.ObjectSchema<{
|
|
|
1452
1361
|
}, undefined>, undefined>;
|
|
1453
1362
|
readonly walletType: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
|
|
1454
1363
|
}, undefined>;
|
|
1364
|
+
type GetAccountResult = v.InferOutput<typeof getAccountResultSchema>;
|
|
1455
1365
|
declare const getAccountRequestMessageSchema: v.ObjectSchema<{
|
|
1456
1366
|
readonly method: v.LiteralSchema<"wallet_getAccount", undefined>;
|
|
1457
1367
|
readonly params: v.NullishSchema<v.NullSchema<undefined>, never>;
|
|
1458
1368
|
readonly id: v.StringSchema<undefined>;
|
|
1459
1369
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1460
1370
|
}, undefined>;
|
|
1461
|
-
type
|
|
1371
|
+
type GetAccountRequestMessage = v.InferOutput<typeof getAccountRequestMessageSchema>;
|
|
1372
|
+
type GetAccount = MethodParamsAndResult<GetAccountParams, GetAccountResult>;
|
|
1462
1373
|
declare const registerClientMethodName = "wallet_registerClient";
|
|
1463
1374
|
declare const registerClientParamsSchema: v.ObjectSchema<{
|
|
1464
1375
|
readonly name: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1465
1376
|
readonly description: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1466
1377
|
}, undefined>;
|
|
1378
|
+
type RegisterClientParams = v.InferOutput<typeof registerClientParamsSchema>;
|
|
1467
1379
|
declare const registerClientResultSchema: v.ObjectSchema<{
|
|
1468
1380
|
readonly id: v.StringSchema<undefined>;
|
|
1469
1381
|
}, undefined>;
|
|
1382
|
+
type RegisterClientResult = v.InferOutput<typeof registerClientResultSchema>;
|
|
1470
1383
|
declare const registerClientRequestMessageSchema: v.ObjectSchema<{
|
|
1471
1384
|
readonly method: v.LiteralSchema<"wallet_registerClient", undefined>;
|
|
1472
1385
|
readonly params: v.ObjectSchema<{
|
|
@@ -1476,120 +1389,86 @@ declare const registerClientRequestMessageSchema: v.ObjectSchema<{
|
|
|
1476
1389
|
readonly id: v.StringSchema<undefined>;
|
|
1477
1390
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1478
1391
|
}, undefined>;
|
|
1479
|
-
type
|
|
1392
|
+
type RegisterClientRequestMessage = v.InferOutput<typeof registerClientRequestMessageSchema>;
|
|
1393
|
+
type RegisterClient = MethodParamsAndResult<RegisterClientParams, RegisterClientResult>;
|
|
1480
1394
|
declare const connectMethodName = "wallet_connect";
|
|
1481
1395
|
declare const connectParamsSchema: v.NullishSchema<v.ObjectSchema<{
|
|
1482
|
-
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [
|
|
1483
|
-
readonly
|
|
1484
|
-
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1485
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1486
|
-
readonly actions: v.ObjectSchema<{
|
|
1396
|
+
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1397
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1487
1398
|
readonly read: v.BooleanSchema<undefined>;
|
|
1488
1399
|
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1489
1400
|
readonly rename: v.BooleanSchema<undefined>;
|
|
1490
|
-
}, undefined
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1496
|
-
readonly actions: v.ObjectSchema<{
|
|
1497
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1498
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1499
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1500
|
-
}, undefined>;
|
|
1501
|
-
}, "clientId">;
|
|
1502
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1503
|
-
type: "account";
|
|
1504
|
-
resourceId: string & v.Brand<"AccountResourceId">;
|
|
1505
|
-
actions: {
|
|
1506
|
-
read: boolean;
|
|
1507
|
-
autoSign: boolean;
|
|
1508
|
-
rename: boolean;
|
|
1401
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1402
|
+
readonly entries: {
|
|
1403
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1404
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1405
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1509
1406
|
};
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1407
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1408
|
+
read?: boolean | undefined;
|
|
1409
|
+
autoSign?: boolean | undefined;
|
|
1410
|
+
rename?: boolean | undefined;
|
|
1411
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1412
|
+
readonly _types?: {
|
|
1413
|
+
readonly input: {
|
|
1414
|
+
read?: boolean | undefined;
|
|
1415
|
+
autoSign?: boolean | undefined;
|
|
1416
|
+
rename?: boolean | undefined;
|
|
1519
1417
|
};
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
actions: {
|
|
1525
|
-
read: boolean;
|
|
1526
|
-
autoSign: boolean;
|
|
1527
|
-
rename: boolean;
|
|
1418
|
+
readonly output: {
|
|
1419
|
+
read?: boolean | undefined;
|
|
1420
|
+
autoSign?: boolean | undefined;
|
|
1421
|
+
rename?: boolean | undefined;
|
|
1528
1422
|
};
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
}
|
|
1532
|
-
|
|
1533
|
-
readonly
|
|
1534
|
-
|
|
1535
|
-
readonly
|
|
1536
|
-
readonly actions: v.ObjectSchema<{
|
|
1423
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1424
|
+
} | undefined;
|
|
1425
|
+
};
|
|
1426
|
+
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1427
|
+
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1428
|
+
}, undefined>, v.ObjectSchema<{
|
|
1429
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1537
1430
|
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1538
1431
|
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1539
1432
|
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1540
1433
|
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1541
|
-
}, undefined
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
readonly actions: v.ObjectSchema<{
|
|
1548
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1549
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1550
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1551
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1552
|
-
}, undefined>;
|
|
1553
|
-
}, "clientId">;
|
|
1554
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1555
|
-
type: "wallet";
|
|
1556
|
-
resourceId: "wallet";
|
|
1557
|
-
actions: {
|
|
1558
|
-
addPrivateKey: boolean;
|
|
1559
|
-
openPopup: boolean;
|
|
1560
|
-
openFullPage: boolean;
|
|
1561
|
-
readAllAccounts: boolean;
|
|
1434
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1435
|
+
readonly entries: {
|
|
1436
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1437
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1438
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1439
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1562
1440
|
};
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1441
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1442
|
+
addPrivateKey?: boolean | undefined;
|
|
1443
|
+
openPopup?: boolean | undefined;
|
|
1444
|
+
openFullPage?: boolean | undefined;
|
|
1445
|
+
readAllAccounts?: boolean | undefined;
|
|
1446
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1447
|
+
readonly _types?: {
|
|
1448
|
+
readonly input: {
|
|
1449
|
+
addPrivateKey?: boolean | undefined;
|
|
1450
|
+
openPopup?: boolean | undefined;
|
|
1451
|
+
openFullPage?: boolean | undefined;
|
|
1452
|
+
readAllAccounts?: boolean | undefined;
|
|
1573
1453
|
};
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
addPrivateKey: boolean;
|
|
1580
|
-
openPopup: boolean;
|
|
1581
|
-
openFullPage: boolean;
|
|
1582
|
-
readAllAccounts: boolean;
|
|
1454
|
+
readonly output: {
|
|
1455
|
+
addPrivateKey?: boolean | undefined;
|
|
1456
|
+
openPopup?: boolean | undefined;
|
|
1457
|
+
openFullPage?: boolean | undefined;
|
|
1458
|
+
readAllAccounts?: boolean | undefined;
|
|
1583
1459
|
};
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
}
|
|
1587
|
-
|
|
1460
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1461
|
+
} | undefined;
|
|
1462
|
+
};
|
|
1463
|
+
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1464
|
+
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1465
|
+
}, undefined>], undefined>, undefined>, never>;
|
|
1588
1466
|
readonly clientInfo: v.ObjectSchema<{
|
|
1589
1467
|
readonly name: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1590
1468
|
readonly description: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1591
1469
|
}, undefined>;
|
|
1592
1470
|
}, undefined>, never>;
|
|
1471
|
+
type ConnectParams = v.InferOutput<typeof connectParamsSchema>;
|
|
1593
1472
|
declare const connectResultSchema: v.ObjectSchema<{
|
|
1594
1473
|
readonly id: v.SchemaWithPipe<[v.StringSchema<undefined>, v.BrandAction<string, "AccountId">]>;
|
|
1595
1474
|
readonly addresses: v.ArraySchema<v.ObjectSchema<{
|
|
@@ -1600,115 +1479,80 @@ declare const connectResultSchema: v.ObjectSchema<{
|
|
|
1600
1479
|
}, undefined>, undefined>;
|
|
1601
1480
|
readonly walletType: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
|
|
1602
1481
|
}, undefined>;
|
|
1482
|
+
type ConnectResult = v.InferOutput<typeof connectResultSchema>;
|
|
1603
1483
|
declare const connectRequestMessageSchema: v.ObjectSchema<{
|
|
1604
1484
|
readonly method: v.LiteralSchema<"wallet_connect", undefined>;
|
|
1605
1485
|
readonly params: v.NullishSchema<v.ObjectSchema<{
|
|
1606
|
-
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [
|
|
1607
|
-
readonly
|
|
1608
|
-
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1609
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1610
|
-
readonly actions: v.ObjectSchema<{
|
|
1486
|
+
readonly permissions: v.OptionalSchema<v.ArraySchema<v.VariantSchema<"type", [v.ObjectSchema<{
|
|
1487
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1611
1488
|
readonly read: v.BooleanSchema<undefined>;
|
|
1612
1489
|
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1613
1490
|
readonly rename: v.BooleanSchema<undefined>;
|
|
1614
|
-
}, undefined
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
readonly clientId: v.StringSchema<undefined>;
|
|
1620
|
-
readonly actions: v.ObjectSchema<{
|
|
1621
|
-
readonly read: v.BooleanSchema<undefined>;
|
|
1622
|
-
readonly autoSign: v.BooleanSchema<undefined>;
|
|
1623
|
-
readonly rename: v.BooleanSchema<undefined>;
|
|
1624
|
-
}, undefined>;
|
|
1625
|
-
}, "clientId">;
|
|
1626
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1627
|
-
type: "account";
|
|
1628
|
-
resourceId: string & v.Brand<"AccountResourceId">;
|
|
1629
|
-
actions: {
|
|
1630
|
-
read: boolean;
|
|
1631
|
-
autoSign: boolean;
|
|
1632
|
-
rename: boolean;
|
|
1491
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1492
|
+
readonly entries: {
|
|
1493
|
+
readonly read: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1494
|
+
readonly autoSign: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1495
|
+
readonly rename: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1633
1496
|
};
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1497
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1498
|
+
read?: boolean | undefined;
|
|
1499
|
+
autoSign?: boolean | undefined;
|
|
1500
|
+
rename?: boolean | undefined;
|
|
1501
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1502
|
+
readonly _types?: {
|
|
1503
|
+
readonly input: {
|
|
1504
|
+
read?: boolean | undefined;
|
|
1505
|
+
autoSign?: boolean | undefined;
|
|
1506
|
+
rename?: boolean | undefined;
|
|
1643
1507
|
};
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
actions: {
|
|
1649
|
-
read: boolean;
|
|
1650
|
-
autoSign: boolean;
|
|
1651
|
-
rename: boolean;
|
|
1508
|
+
readonly output: {
|
|
1509
|
+
read?: boolean | undefined;
|
|
1510
|
+
autoSign?: boolean | undefined;
|
|
1511
|
+
rename?: boolean | undefined;
|
|
1652
1512
|
};
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
}
|
|
1656
|
-
|
|
1657
|
-
readonly
|
|
1658
|
-
|
|
1659
|
-
readonly
|
|
1660
|
-
readonly actions: v.ObjectSchema<{
|
|
1513
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1514
|
+
} | undefined;
|
|
1515
|
+
};
|
|
1516
|
+
readonly type: v.LiteralSchema<"account", undefined>;
|
|
1517
|
+
readonly resourceId: v.SchemaWithPipe<[v.StringSchema<undefined>, v.CheckAction<string, undefined>, v.BrandAction<string, "AccountResourceId">]>;
|
|
1518
|
+
}, undefined>, v.ObjectSchema<{
|
|
1519
|
+
readonly actions: Omit<v.ObjectSchema<{
|
|
1661
1520
|
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1662
1521
|
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1663
1522
|
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1664
1523
|
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1665
|
-
}, undefined
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
readonly actions: v.ObjectSchema<{
|
|
1672
|
-
readonly addPrivateKey: v.BooleanSchema<undefined>;
|
|
1673
|
-
readonly openPopup: v.BooleanSchema<undefined>;
|
|
1674
|
-
readonly openFullPage: v.BooleanSchema<undefined>;
|
|
1675
|
-
readonly readAllAccounts: v.BooleanSchema<undefined>;
|
|
1676
|
-
}, undefined>;
|
|
1677
|
-
}, "clientId">;
|
|
1678
|
-
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1679
|
-
type: "wallet";
|
|
1680
|
-
resourceId: "wallet";
|
|
1681
|
-
actions: {
|
|
1682
|
-
addPrivateKey: boolean;
|
|
1683
|
-
openPopup: boolean;
|
|
1684
|
-
openFullPage: boolean;
|
|
1685
|
-
readAllAccounts: boolean;
|
|
1524
|
+
}, undefined>, "_types" | "_run" | "entries"> & {
|
|
1525
|
+
readonly entries: {
|
|
1526
|
+
readonly addPrivateKey: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1527
|
+
readonly openPopup: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1528
|
+
readonly openFullPage: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1529
|
+
readonly readAllAccounts: v.OptionalSchema<v.BooleanSchema<undefined>, never>;
|
|
1686
1530
|
};
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1531
|
+
readonly _run: (dataset: v.Dataset<unknown, never>, config: v.Config<v.BaseIssue<unknown>>) => v.Dataset<{
|
|
1532
|
+
addPrivateKey?: boolean | undefined;
|
|
1533
|
+
openPopup?: boolean | undefined;
|
|
1534
|
+
openFullPage?: boolean | undefined;
|
|
1535
|
+
readAllAccounts?: boolean | undefined;
|
|
1536
|
+
}, v.ObjectIssue | v.BooleanIssue>;
|
|
1537
|
+
readonly _types?: {
|
|
1538
|
+
readonly input: {
|
|
1539
|
+
addPrivateKey?: boolean | undefined;
|
|
1540
|
+
openPopup?: boolean | undefined;
|
|
1541
|
+
openFullPage?: boolean | undefined;
|
|
1542
|
+
readAllAccounts?: boolean | undefined;
|
|
1697
1543
|
};
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
addPrivateKey: boolean;
|
|
1704
|
-
openPopup: boolean;
|
|
1705
|
-
openFullPage: boolean;
|
|
1706
|
-
readAllAccounts: boolean;
|
|
1544
|
+
readonly output: {
|
|
1545
|
+
addPrivateKey?: boolean | undefined;
|
|
1546
|
+
openPopup?: boolean | undefined;
|
|
1547
|
+
openFullPage?: boolean | undefined;
|
|
1548
|
+
readAllAccounts?: boolean | undefined;
|
|
1707
1549
|
};
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
}
|
|
1711
|
-
|
|
1550
|
+
readonly issue: v.ObjectIssue | v.BooleanIssue;
|
|
1551
|
+
} | undefined;
|
|
1552
|
+
};
|
|
1553
|
+
readonly type: v.LiteralSchema<"wallet", undefined>;
|
|
1554
|
+
readonly resourceId: v.LiteralSchema<"wallet", undefined>;
|
|
1555
|
+
}, undefined>], undefined>, undefined>, never>;
|
|
1712
1556
|
readonly clientInfo: v.ObjectSchema<{
|
|
1713
1557
|
readonly name: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
1714
1558
|
readonly description: v.OptionalSchema<v.StringSchema<undefined>, never>;
|
|
@@ -1717,7 +1561,8 @@ declare const connectRequestMessageSchema: v.ObjectSchema<{
|
|
|
1717
1561
|
readonly id: v.StringSchema<undefined>;
|
|
1718
1562
|
readonly jsonrpc: v.LiteralSchema<"2.0", undefined>;
|
|
1719
1563
|
}, undefined>;
|
|
1720
|
-
type
|
|
1564
|
+
type ConnectRequestMessage = v.InferOutput<typeof connectRequestMessageSchema>;
|
|
1565
|
+
type Connect = MethodParamsAndResult<ConnectParams, ConnectResult>;
|
|
1721
1566
|
|
|
1722
1567
|
declare const walletTypes: readonly ["software", "ledger"];
|
|
1723
1568
|
declare const walletTypeSchema: v.PicklistSchema<readonly ["software", "ledger"], undefined>;
|
|
@@ -1798,4 +1643,4 @@ declare class BaseAdapter extends SatsConnectAdapter {
|
|
|
1798
1643
|
declare const DefaultAdaptersInfo: Record<string, Provider>;
|
|
1799
1644
|
declare const defaultAdapters: Record<string, new () => SatsConnectAdapter>;
|
|
1800
1645
|
|
|
1801
|
-
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 Connect, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type DeployContractParams, type DeployContractResult, type Disconnect, type DisconnectEvent, type EstimateRbfOrder, type EstimateRunesEtch, type EstimateRunesEtchParams, type EstimateRunesEtchResult, type EstimateRunesMint, type EstimateRunesMintParams, type EstimateRunesMintResult, type EtchRunes, type EtchRunesParams, type EtchRunesResult, type GetAccount, 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 GetCurrentPermissions, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetOrder, 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
|
|
1646
|
+
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 Connect, type ConnectParams, type ConnectRequestMessage, type ConnectResult, type CreateInscriptionOptions, type CreateInscriptionPayload, type CreateInscriptionResponse, type CreateRepeatInscriptionsOptions, type CreateRepeatInscriptionsPayload, type CreateRepeatInscriptionsResponse, DefaultAdaptersInfo, type DeployContractParams, type DeployContractResult, type Disconnect, type DisconnectEvent, type DisconnectParams, type DisconnectRequestMessage, type DisconnectResult, type EstimateRbfOrder, type EstimateRunesEtch, type EstimateRunesEtchParams, type EstimateRunesEtchResult, type EstimateRunesMint, type EstimateRunesMintParams, type EstimateRunesMintResult, type EtchRunes, type EtchRunesParams, type EtchRunesResult, 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 GetCapabilitiesOptions, type GetCapabilitiesPayload, type GetCapabilitiesResponse, type GetCurrentPermissions, type GetCurrentPermissionsParams, type GetCurrentPermissionsRequestMessage, type GetCurrentPermissionsResult, type GetInfo, type GetInfoParams, type GetInfoRequestMessage, type GetInfoResult, type GetInscriptions, type GetOrder, type GetRunesBalance, type GetRunesBalanceParams, type GetRunesBalanceRequestMessage, type GetRunesBalanceResult, type GetWalletType, type GetWalletTypeParams, type GetWalletTypeRequestMessage, type GetWalletTypeResult, type InputToSign, MessageSigningProtocols, type MethodParamsAndResult, type MintRunes, type MintRunesParams, type MintRunesResult, type NetworkChangeEvent, type OrdinalsRequestMethod, type OrdinalsRequests, type Params, type PermissionWithoutClientId, type Provider, type PsbtPayload, type RbfOrder, type Recipient$2 as Recipient, type RegisterClient, type RegisterClientParams, type RegisterClientRequestMessage, type RegisterClientResult, 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 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, 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, getInscriptionsResultSchema, getInscriptionsSchema, getProviderById, getProviderOrThrow, getProviders, getRunesBalanceMethodName, getRunesBalanceParamsSchema, getRunesBalanceRequestMessageSchema, getRunesBalanceResultSchema, getSupportedWallets, getWalletTypeMethodName, getWalletTypeParamsSchema, getWalletTypeRequestMessageSchema, getWalletTypeResultSchema, isProviderInstalled, networkChangeEventName, networkChangeSchema, permissionTemplate, registerClientMethodName, registerClientParamsSchema, registerClientRequestMessageSchema, registerClientResultSchema, 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
|
@@ -386,12 +386,18 @@ var getBalanceRequestMessageSchema = v6.object({
|
|
|
386
386
|
// src/request/types/walletMethods.ts
|
|
387
387
|
import * as v7 from "valibot";
|
|
388
388
|
import { permissions } from "@secretkeylabs/xverse-core";
|
|
389
|
-
var
|
|
390
|
-
v7.
|
|
391
|
-
|
|
389
|
+
var permissionTemplate = v7.variant("type", [
|
|
390
|
+
v7.object({
|
|
391
|
+
...v7.omit(permissions.resources.account.accountPermissionSchema, ["clientId", "actions"]).entries,
|
|
392
|
+
actions: v7.partial(permissions.resources.account.accountActionsSchema)
|
|
393
|
+
}),
|
|
394
|
+
v7.object({
|
|
395
|
+
...v7.omit(permissions.resources.wallet.walletPermissionSchema, ["clientId"]).entries,
|
|
396
|
+
actions: v7.partial(permissions.resources.wallet.walletActionsSchema)
|
|
397
|
+
})
|
|
392
398
|
]);
|
|
393
399
|
var requestPermissionsMethodName = "wallet_requestPermissions";
|
|
394
|
-
var requestPermissionsParamsSchema = v7.nullish(v7.array(
|
|
400
|
+
var requestPermissionsParamsSchema = v7.nullish(v7.array(permissionTemplate));
|
|
395
401
|
var requestPermissionsResultSchema = v7.literal(true);
|
|
396
402
|
var requestPermissionsRequestMessageSchema = v7.object({
|
|
397
403
|
...rpcRequestMessageSchema.entries,
|
|
@@ -479,7 +485,7 @@ var registerClientRequestMessageSchema = v7.object({
|
|
|
479
485
|
var connectMethodName = "wallet_connect";
|
|
480
486
|
var connectParamsSchema = v7.nullish(
|
|
481
487
|
v7.object({
|
|
482
|
-
permissions: v7.optional(v7.array(
|
|
488
|
+
permissions: v7.optional(v7.array(permissionTemplate)),
|
|
483
489
|
clientInfo: registerClientParamsSchema
|
|
484
490
|
})
|
|
485
491
|
);
|
|
@@ -1600,7 +1606,7 @@ export {
|
|
|
1600
1606
|
isProviderInstalled,
|
|
1601
1607
|
networkChangeEventName,
|
|
1602
1608
|
networkChangeSchema,
|
|
1603
|
-
|
|
1609
|
+
permissionTemplate,
|
|
1604
1610
|
registerClientMethodName,
|
|
1605
1611
|
registerClientParamsSchema,
|
|
1606
1612
|
registerClientRequestMessageSchema,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sats-connect/core",
|
|
3
|
-
"version": "0.4.0-
|
|
3
|
+
"version": "0.4.0-8f3e1e5",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.mts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
]
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@secretkeylabs/xverse-core": "
|
|
28
|
+
"@secretkeylabs/xverse-core": "24.0.0-30944ea",
|
|
29
29
|
"axios": "1.7.4",
|
|
30
30
|
"bitcoin-address-validation": "2.2.3",
|
|
31
31
|
"buffer": "6.0.3",
|