@sats-connect/core 0.7.1-3ab7f7d → 0.7.1-461ff60
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1066,7 +1066,7 @@ 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
|
|
1069
|
+
readonly tokenIdentifier: v.StringSchema<undefined>;
|
|
1070
1070
|
readonly tokenName: v.StringSchema<undefined>;
|
|
1071
1071
|
readonly tokenTicker: v.StringSchema<undefined>;
|
|
1072
1072
|
readonly decimals: v.NumberSchema<undefined>;
|
|
@@ -2105,7 +2105,7 @@ type StxRequestMethod = keyof StxRequests;
|
|
|
2105
2105
|
type SparkRequests = {
|
|
2106
2106
|
[sparkGetAddressesMethodName]: SparkGetAddresses;
|
|
2107
2107
|
[sparkGetBalanceMethodName]: SparkGetBalance;
|
|
2108
|
-
[sparkTransferMethodName]:
|
|
2108
|
+
[sparkTransferMethodName]: SparkTransfer;
|
|
2109
2109
|
[sparkTransferTokenMethodName]: SparkTransferToken;
|
|
2110
2110
|
};
|
|
2111
2111
|
type SparkRequestMethod = keyof SparkRequests;
|
package/dist/index.d.ts
CHANGED
|
@@ -1066,7 +1066,7 @@ 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
|
|
1069
|
+
readonly tokenIdentifier: v.StringSchema<undefined>;
|
|
1070
1070
|
readonly tokenName: v.StringSchema<undefined>;
|
|
1071
1071
|
readonly tokenTicker: v.StringSchema<undefined>;
|
|
1072
1072
|
readonly decimals: v.NumberSchema<undefined>;
|
|
@@ -2105,7 +2105,7 @@ type StxRequestMethod = keyof StxRequests;
|
|
|
2105
2105
|
type SparkRequests = {
|
|
2106
2106
|
[sparkGetAddressesMethodName]: SparkGetAddresses;
|
|
2107
2107
|
[sparkGetBalanceMethodName]: SparkGetBalance;
|
|
2108
|
-
[sparkTransferMethodName]:
|
|
2108
|
+
[sparkTransferMethodName]: SparkTransfer;
|
|
2109
2109
|
[sparkTransferTokenMethodName]: SparkTransferToken;
|
|
2110
2110
|
};
|
|
2111
2111
|
type SparkRequestMethod = keyof SparkRequests;
|
package/dist/index.js
CHANGED
|
@@ -1080,7 +1080,7 @@ 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
|
-
|
|
1083
|
+
tokenIdentifier: v13.string(),
|
|
1084
1084
|
tokenName: v13.string(),
|
|
1085
1085
|
tokenTicker: v13.string(),
|
|
1086
1086
|
decimals: v13.number(),
|
package/dist/index.mjs
CHANGED
|
@@ -846,7 +846,7 @@ 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
|
-
|
|
849
|
+
tokenIdentifier: v13.string(),
|
|
850
850
|
tokenName: v13.string(),
|
|
851
851
|
tokenTicker: v13.string(),
|
|
852
852
|
decimals: v13.number(),
|