@sats-connect/core 0.0.2 → 0.0.3-8ca018a
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.mjs +9 -0
- package/package.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -459,6 +459,15 @@ var signMessage = async (options) => {
|
|
|
459
459
|
}
|
|
460
460
|
};
|
|
461
461
|
|
|
462
|
+
// src/runes/index.ts
|
|
463
|
+
import axios from "axios";
|
|
464
|
+
var runesAPI = axios.create({
|
|
465
|
+
baseURL: "https://api.xverse.app/v1/runes",
|
|
466
|
+
headers: {
|
|
467
|
+
"Content-Type": "application/json"
|
|
468
|
+
}
|
|
469
|
+
});
|
|
470
|
+
|
|
462
471
|
// src/transactions/sendBtcTransaction.ts
|
|
463
472
|
import { createUnsecuredToken as createUnsecuredToken6 } from "jsontokens";
|
|
464
473
|
var serializer = (recipient) => {
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sats-connect/core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3-8ca018a",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
|
-
"types": "dist/index.d.
|
|
6
|
+
"types": "dist/index.d.mts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
@@ -24,6 +24,7 @@
|
|
|
24
24
|
]
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
+
"axios": "^1.6.8",
|
|
27
28
|
"bitcoin-address-validation": "2.2.3",
|
|
28
29
|
"buffer": "6.0.3",
|
|
29
30
|
"jsontokens": "4.0.1",
|