@1sat/wallet-toolbox 0.0.61 → 0.0.63
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.
|
@@ -146,6 +146,10 @@ export class OneSatServices {
|
|
|
146
146
|
// Submit as AtomicBEEF which includes all source transactions
|
|
147
147
|
console.log("[OneSatServices] Submitting tx to arcade:", txid);
|
|
148
148
|
const atomicBeef = beef.toBinaryAtomic(txid);
|
|
149
|
+
console.log("[OneSatServices] AtomicBEEF length:", atomicBeef.length, "bytes");
|
|
150
|
+
// Parse back to verify structure
|
|
151
|
+
const verifyBeef = Beef.fromBinary(atomicBeef);
|
|
152
|
+
console.log("[OneSatServices] AtomicBEEF parsed back:\n" + verifyBeef.toLogString());
|
|
149
153
|
// TODO: Remove hardcoded callback headers after server testing
|
|
150
154
|
const status = await this.arcade.submitTransaction(atomicBeef, {
|
|
151
155
|
callbackUrl: `${this.baseUrl}/1sat/arc/callback`,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1sat/wallet-toolbox",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.63",
|
|
4
4
|
"description": "BSV wallet library extending @bsv/wallet-toolbox with 1Sat Ordinals protocol support",
|
|
5
5
|
"author": "1Sat Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"fflate": "^0.8.2"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
|
-
"@bsv/wallet-toolbox-mobile": "npm:@bopen-io/wallet-toolbox-mobile@^1.7.22-idb-fix.
|
|
48
|
+
"@bsv/wallet-toolbox-mobile": "npm:@bopen-io/wallet-toolbox-mobile@^1.7.22-idb-fix.3"
|
|
49
49
|
},
|
|
50
50
|
"peerDependenciesMeta": {
|
|
51
51
|
"@bsv/wallet-toolbox-mobile": {
|
|
@@ -54,8 +54,8 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@biomejs/biome": "^1.9.4",
|
|
57
|
-
"@bsv/wallet-toolbox": "npm:@bopen-io/wallet-toolbox@^1.7.22-idb-fix.
|
|
58
|
-
"@bsv/wallet-toolbox-mobile": "npm:@bopen-io/wallet-toolbox-mobile@^1.7.22-idb-fix.
|
|
57
|
+
"@bsv/wallet-toolbox": "npm:@bopen-io/wallet-toolbox@^1.7.22-idb-fix.3",
|
|
58
|
+
"@bsv/wallet-toolbox-mobile": "npm:@bopen-io/wallet-toolbox-mobile@^1.7.22-idb-fix.3",
|
|
59
59
|
"@types/bun": "^1.3.4",
|
|
60
60
|
"@types/chrome": "^0.1.32",
|
|
61
61
|
"typescript": "^5.9.3"
|