@ledgerhq/vault-cli 2.4.6 → 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.
package/bin/index.mjs 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.6",
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",