@ledgerhq/vault-cli 2.4.5 → 2.4.7

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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @ledgerhq/vault-cli@2.4.5 build /home/runner/work/vault-ts/vault-ts/apps/cli
2
+ > @ledgerhq/vault-cli@2.4.7 build /home/runner/work/vault-ts/vault-ts/apps/cli
3
3
  > tsup && chmod +x bin/index.js
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,9 +10,9 @@
10
10
  CLI Cleaning output folder
11
11
  ESM Build start
12
12
  CJS Build start
13
- ESM bin/index.mjs 148.49 KB
14
- ESM bin/index.mjs.map 281.02 KB
15
- ESM ⚡️ Build success in 718ms
16
- CJS bin/index.js 150.43 KB
17
- CJS bin/index.js.map 244.09 KB
18
- CJS ⚡️ Build success in 726ms
13
+ ESM bin/index.mjs 148.54 KB
14
+ ESM bin/index.mjs.map 281.13 KB
15
+ ESM ⚡️ Build success in 519ms
16
+ CJS bin/index.js 150.48 KB
17
+ CJS bin/index.js.map 244.23 KB
18
+ CJS ⚡️ Build success in 643ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @ledgerhq/vault-cli
2
2
 
3
+ ## 2.4.7
4
+
5
+ ### Patch Changes
6
+
7
+ - ed237f46: fix(send): allow contract interaction with ethereum_sepolia
8
+
9
+ ## 2.4.6
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [b480c1b7]
14
+ - @ledgerhq/vault-common@2.4.5
15
+
3
16
  ## 2.4.5
4
17
 
5
18
  ### Patch Changes
package/bin/index.js CHANGED
@@ -9,7 +9,7 @@ var require_package = __commonJS({
9
9
  "package.json"(exports, module) {
10
10
  module.exports = {
11
11
  name: "@ledgerhq/vault-cli",
12
- version: "2.4.5",
12
+ version: "2.4.7",
13
13
  description: "A various utility command-line for Vault development",
14
14
  homepage: "https://github.com/LedgerHQ/vault-ts",
15
15
  license: "BSD-2-Clause",
@@ -5177,7 +5177,14 @@ async function sendTransaction(options2) {
5177
5177
  );
5178
5178
  }
5179
5179
  var contractPayloadSupported = (account) => {
5180
- return "currency" in account && ["ethereum", "ethereum_ropsten", "ethereum_goerli", "polygon", "bsc"].includes(account.currency);
5180
+ return "currency" in account && [
5181
+ "ethereum",
5182
+ "ethereum_ropsten",
5183
+ "ethereum_goerli",
5184
+ "ethereum_sepolia",
5185
+ "polygon",
5186
+ "bsc"
5187
+ ].includes(account.currency);
5181
5188
  };
5182
5189
  var send_default = {
5183
5190
  command: "send",