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