@ledgerhq/ledger-trust-service 0.1.1 → 0.2.0-nightly.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ledgerhq/ledger-trust-service
2
2
 
3
+ ## 0.2.0-nightly.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#8988](https://github.com/LedgerHQ/ledger-live/pull/8988) [`a231c50`](https://github.com/LedgerHQ/ledger-live/commit/a231c5084a24acb0e49efeb3c7ab1f5dbc6fd94b) Thanks [@sprohaszka-ledger](https://github.com/sprohaszka-ledger)! - Swap: find currency 'from' and 'to' in wallet-api server
8
+
3
9
  ## 0.1.1
4
10
 
5
11
  ### Patch Changes
package/lib/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
- import { getOwnerAddress } from "./solana";
1
+ import { computedTokenAddress, getOwnerAddress } from "./solana";
2
2
  declare const _default: {
3
+ computedTokenAddress: typeof computedTokenAddress;
3
4
  getOwnerAddress: typeof getOwnerAddress;
4
5
  };
5
6
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;;;;AAE3C,wBAEE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;;;;;AAEjE,wBAGE"}
package/lib/index.js CHANGED
@@ -7,6 +7,7 @@
7
7
  Object.defineProperty(exports, "__esModule", { value: true });
8
8
  const solana_1 = require("./solana");
9
9
  exports.default = {
10
+ computedTokenAddress: solana_1.computedTokenAddress,
10
11
  getOwnerAddress: solana_1.getOwnerAddress,
11
12
  };
12
13
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;AAEH,qCAA2C;AAE3C,kBAAe;IACb,eAAe,EAAf,wBAAe;CAChB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;AAEH,qCAAiE;AAEjE,kBAAe;IACb,oBAAoB,EAApB,6BAAoB;IACpB,eAAe,EAAf,wBAAe;CAChB,CAAC"}
package/lib-es/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
- import { getOwnerAddress } from "./solana";
1
+ import { computedTokenAddress, getOwnerAddress } from "./solana";
2
2
  declare const _default: {
3
+ computedTokenAddress: typeof computedTokenAddress;
3
4
  getOwnerAddress: typeof getOwnerAddress;
4
5
  };
5
6
  export default _default;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;;;;AAE3C,wBAEE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;;;;;AAEjE,wBAGE"}
package/lib-es/index.js CHANGED
@@ -3,8 +3,9 @@
3
3
  *
4
4
  * Use only exposed methods below outside of this module.
5
5
  */
6
- import { getOwnerAddress } from "./solana";
6
+ import { computedTokenAddress, getOwnerAddress } from "./solana";
7
7
  export default {
8
+ computedTokenAddress,
8
9
  getOwnerAddress,
9
10
  };
10
11
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAE3C,eAAe;IACb,eAAe;CAChB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,oBAAoB,EAAE,eAAe,EAAE,MAAM,UAAU,CAAC;AAEjE,eAAe;IACb,oBAAoB;IACpB,eAAe;CAChB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ledgerhq/ledger-trust-service",
3
- "version": "0.1.1",
3
+ "version": "0.2.0-nightly.0",
4
4
  "description": "Ledger Trust service client",
5
5
  "keywords": [
6
6
  "Ledger",
package/src/index.ts CHANGED
@@ -4,8 +4,9 @@
4
4
  * Use only exposed methods below outside of this module.
5
5
  */
6
6
 
7
- import { getOwnerAddress } from "./solana";
7
+ import { computedTokenAddress, getOwnerAddress } from "./solana";
8
8
 
9
9
  export default {
10
+ computedTokenAddress,
10
11
  getOwnerAddress,
11
12
  };