@alephium/ledger-app 0.2.0 → 0.2.1
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.
|
@@ -58,7 +58,7 @@ describe('sdk', () => {
|
|
|
58
58
|
const transport = await hw_transport_node_speculos_1.default.open({ apduPort });
|
|
59
59
|
const app = new src_1.default(transport);
|
|
60
60
|
const version = await app.getVersion();
|
|
61
|
-
expect(version).toBe('0.
|
|
61
|
+
expect(version).toBe('0.2.0');
|
|
62
62
|
await app.close();
|
|
63
63
|
});
|
|
64
64
|
it('should get public key', async () => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alephium/ledger-app",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"license": "GPL",
|
|
5
5
|
"types": "dist/src/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -25,10 +25,10 @@
|
|
|
25
25
|
"trailingComma": "none"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@alephium/cli": "0.
|
|
29
|
-
"@alephium/web3": "0.
|
|
30
|
-
"@alephium/web3-test": "0.
|
|
31
|
-
"@alephium/web3-wallet": "0.
|
|
28
|
+
"@alephium/cli": "^0.14.0",
|
|
29
|
+
"@alephium/web3": "^0.14.0",
|
|
30
|
+
"@alephium/web3-test": "^0.14.0",
|
|
31
|
+
"@alephium/web3-wallet": "^0.14.0",
|
|
32
32
|
"@ledgerhq/hw-transport": "6.27.10"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
package/test/speculos.test.ts
CHANGED
|
@@ -36,7 +36,7 @@ describe('sdk', () => {
|
|
|
36
36
|
const transport = await SpeculosTransport.open({ apduPort })
|
|
37
37
|
const app = new AlephiumApp(transport)
|
|
38
38
|
const version = await app.getVersion()
|
|
39
|
-
expect(version).toBe('0.
|
|
39
|
+
expect(version).toBe('0.2.0')
|
|
40
40
|
await app.close()
|
|
41
41
|
})
|
|
42
42
|
|