@ledgerhq/vault-cli 2.4.6 → 2.4.8
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/.turbo/turbo-build.log +7 -7
- package/CHANGELOG.md +13 -0
- package/bin/index.js +9 -2
- package/bin/index.js.map +1 -1
- package/bin/index.mjs +9 -2
- package/bin/index.mjs.map +1 -1
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @ledgerhq/vault-cli@2.4.
|
|
2
|
+
> @ledgerhq/vault-cli@2.4.8 build /home/runner/work/vault-ts/vault-ts/apps/cli
|
|
3
3
|
> tsup && chmod +x bin/index.js
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mESM[39m Build start
|
|
12
12
|
[34mCJS[39m Build start
|
|
13
|
-
[32mESM[39m [1mbin/index.mjs [22m[32m148.
|
|
14
|
-
[32mESM[39m [1mbin/index.mjs.map [22m[32m281.
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
16
|
-
[32mCJS[39m [1mbin/index.js [22m[32m150.
|
|
17
|
-
[32mCJS[39m [1mbin/index.js.map [22m[32m244.
|
|
18
|
-
[32mCJS[39m ⚡️ Build success in
|
|
13
|
+
[32mESM[39m [1mbin/index.mjs [22m[32m148.54 KB[39m
|
|
14
|
+
[32mESM[39m [1mbin/index.mjs.map [22m[32m281.13 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 699ms
|
|
16
|
+
[32mCJS[39m [1mbin/index.js [22m[32m150.48 KB[39m
|
|
17
|
+
[32mCJS[39m [1mbin/index.js.map [22m[32m244.23 KB[39m
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 710ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @ledgerhq/vault-cli
|
|
2
2
|
|
|
3
|
+
## 2.4.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [34784c5f]
|
|
8
|
+
- @ledgerhq/vault-common@2.4.6
|
|
9
|
+
|
|
10
|
+
## 2.4.7
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- ed237f46: fix(send): allow contract interaction with ethereum_sepolia
|
|
15
|
+
|
|
3
16
|
## 2.4.6
|
|
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.
|
|
12
|
+
version: "2.4.8",
|
|
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 && [
|
|
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",
|