@sats-connect/core 0.7.1-a0d9214 → 0.7.1-e16b520
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 +4 -5
- package/dist/index.d.ts +4 -5
- package/dist/index.js +2 -3
- package/dist/index.mjs +2 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1066,7 +1066,6 @@ declare const sparkGetBalanceResultSchema: v.ObjectSchema<{
|
|
|
1066
1066
|
readonly tokenBalances: v.ArraySchema<v.ObjectSchema<{
|
|
1067
1067
|
readonly balance: v.StringSchema<undefined>;
|
|
1068
1068
|
readonly tokenMetadata: v.ObjectSchema<{
|
|
1069
|
-
readonly tokenAddress: v.StringSchema<undefined>;
|
|
1070
1069
|
readonly tokenIdentifier: v.StringSchema<undefined>;
|
|
1071
1070
|
readonly tokenName: v.StringSchema<undefined>;
|
|
1072
1071
|
readonly tokenTicker: v.StringSchema<undefined>;
|
|
@@ -1129,9 +1128,9 @@ declare const sparkTransferTokenParamsSchema: v.ObjectSchema<{
|
|
|
1129
1128
|
*/
|
|
1130
1129
|
readonly tokenAmount: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1131
1130
|
/**
|
|
1132
|
-
* The
|
|
1131
|
+
* The Bech32m token identifier.
|
|
1133
1132
|
*/
|
|
1134
|
-
readonly
|
|
1133
|
+
readonly tokenIdentifier: v.StringSchema<undefined>;
|
|
1135
1134
|
/**
|
|
1136
1135
|
* The recipient's spark address.
|
|
1137
1136
|
*/
|
|
@@ -1153,9 +1152,9 @@ declare const sparkTransferTokenRequestMessageSchema: v.ObjectSchema<{
|
|
|
1153
1152
|
*/
|
|
1154
1153
|
readonly tokenAmount: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1155
1154
|
/**
|
|
1156
|
-
* The
|
|
1155
|
+
* The Bech32m token identifier.
|
|
1157
1156
|
*/
|
|
1158
|
-
readonly
|
|
1157
|
+
readonly tokenIdentifier: v.StringSchema<undefined>;
|
|
1159
1158
|
/**
|
|
1160
1159
|
* The recipient's spark address.
|
|
1161
1160
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1066,7 +1066,6 @@ declare const sparkGetBalanceResultSchema: v.ObjectSchema<{
|
|
|
1066
1066
|
readonly tokenBalances: v.ArraySchema<v.ObjectSchema<{
|
|
1067
1067
|
readonly balance: v.StringSchema<undefined>;
|
|
1068
1068
|
readonly tokenMetadata: v.ObjectSchema<{
|
|
1069
|
-
readonly tokenAddress: v.StringSchema<undefined>;
|
|
1070
1069
|
readonly tokenIdentifier: v.StringSchema<undefined>;
|
|
1071
1070
|
readonly tokenName: v.StringSchema<undefined>;
|
|
1072
1071
|
readonly tokenTicker: v.StringSchema<undefined>;
|
|
@@ -1129,9 +1128,9 @@ declare const sparkTransferTokenParamsSchema: v.ObjectSchema<{
|
|
|
1129
1128
|
*/
|
|
1130
1129
|
readonly tokenAmount: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1131
1130
|
/**
|
|
1132
|
-
* The
|
|
1131
|
+
* The Bech32m token identifier.
|
|
1133
1132
|
*/
|
|
1134
|
-
readonly
|
|
1133
|
+
readonly tokenIdentifier: v.StringSchema<undefined>;
|
|
1135
1134
|
/**
|
|
1136
1135
|
* The recipient's spark address.
|
|
1137
1136
|
*/
|
|
@@ -1153,9 +1152,9 @@ declare const sparkTransferTokenRequestMessageSchema: v.ObjectSchema<{
|
|
|
1153
1152
|
*/
|
|
1154
1153
|
readonly tokenAmount: v.UnionSchema<[v.NumberSchema<undefined>, v.StringSchema<undefined>], undefined>;
|
|
1155
1154
|
/**
|
|
1156
|
-
* The
|
|
1155
|
+
* The Bech32m token identifier.
|
|
1157
1156
|
*/
|
|
1158
|
-
readonly
|
|
1157
|
+
readonly tokenIdentifier: v.StringSchema<undefined>;
|
|
1159
1158
|
/**
|
|
1160
1159
|
* The recipient's spark address.
|
|
1161
1160
|
*/
|
package/dist/index.js
CHANGED
|
@@ -1080,7 +1080,6 @@ var sparkGetBalanceResultSchema = v13.object({
|
|
|
1080
1080
|
/* The address balance of the token in string form as it can overflow a js number */
|
|
1081
1081
|
balance: v13.string(),
|
|
1082
1082
|
tokenMetadata: v13.object({
|
|
1083
|
-
tokenAddress: v13.string(),
|
|
1084
1083
|
tokenIdentifier: v13.string(),
|
|
1085
1084
|
tokenName: v13.string(),
|
|
1086
1085
|
tokenTicker: v13.string(),
|
|
@@ -1136,9 +1135,9 @@ var sparkTransferTokenParamsSchema = v15.object({
|
|
|
1136
1135
|
*/
|
|
1137
1136
|
tokenAmount: v15.union([v15.number(), v15.string()]),
|
|
1138
1137
|
/**
|
|
1139
|
-
* The
|
|
1138
|
+
* The Bech32m token identifier.
|
|
1140
1139
|
*/
|
|
1141
|
-
|
|
1140
|
+
tokenIdentifier: v15.string(),
|
|
1142
1141
|
/**
|
|
1143
1142
|
* The recipient's spark address.
|
|
1144
1143
|
*/
|
package/dist/index.mjs
CHANGED
|
@@ -846,7 +846,6 @@ var sparkGetBalanceResultSchema = v13.object({
|
|
|
846
846
|
/* The address balance of the token in string form as it can overflow a js number */
|
|
847
847
|
balance: v13.string(),
|
|
848
848
|
tokenMetadata: v13.object({
|
|
849
|
-
tokenAddress: v13.string(),
|
|
850
849
|
tokenIdentifier: v13.string(),
|
|
851
850
|
tokenName: v13.string(),
|
|
852
851
|
tokenTicker: v13.string(),
|
|
@@ -902,9 +901,9 @@ var sparkTransferTokenParamsSchema = v15.object({
|
|
|
902
901
|
*/
|
|
903
902
|
tokenAmount: v15.union([v15.number(), v15.string()]),
|
|
904
903
|
/**
|
|
905
|
-
* The
|
|
904
|
+
* The Bech32m token identifier.
|
|
906
905
|
*/
|
|
907
|
-
|
|
906
|
+
tokenIdentifier: v15.string(),
|
|
908
907
|
/**
|
|
909
908
|
* The recipient's spark address.
|
|
910
909
|
*/
|