Skip to content
This repository was archived by the owner on Oct 4, 2024. It is now read-only.

Commit 3156727

Browse files
authored
Merge pull request #1111 from near/ledger-path-msg
fix: added message for Ledger users
2 parents 8518cec + e730777 commit 3156727

File tree

7 files changed

+49
-8
lines changed

7 files changed

+49
-8
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
## [unreleased]
44
- ...
55

6+
## `4.0.12` [03-19-2024]
7+
- New: Added back Ledger support, please notice that the `--useLedger` does not set the path anymore, use `--ledgerPath` for this.
8+
- New: Added back all `validator` commands.
9+
- New: Added `add-credentials` command to add credentials to the `near-cli` config file.
10+
- Fixes: Multitude of small fixes, see each release note for more details.
11+
612
## `4.0.0` [01-23-2024]
713
- Reorganized code to simplify its maintenance.
814
- New: Fixed `create-account` can now create `TLA`, `sub-accounts` and `.testnet/.near` accounts.

README.md

+19-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,26 @@
11
# NEAR CLI (command line interface)
22

3-
[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/near/near-cli)
4-
53
NEAR CLI is a Node.js application that relies on [`near-api-js`](https://github.com/near/near-api-js) to connect to and interact with the NEAR blockchain. Create accounts, access keys, sign & send transactions with this versatile command line interface tool.
64

75
**Note:** Node.js version 16+ is required to run NEAR CLI.
86

7+
## 🚨 v4.0.0 Notes
8+
This release is a major reorganization of the codebase to simplify its maintenance. It also includes a few new features and a multitude of small fixes.
9+
10+
The most notable changes are:
11+
- **Ledger users**, please notice that the `--useLedger` does not set the path anymore, use `--ledgerPath` for this
12+
- Please check the commands that support Ledger for more details
13+
- Users can now import credentials using the `add-credentials` command
14+
- The `generate-key` command now has a `--saveImplicit` option to save the key as an implicit account
15+
- Users can create `testnet` pre-funded accounts using the `--useFaucet` option
16+
- Accounts cannot create `TLA` with less than 32 characters anymore (this is a NEAR protocol change)
17+
- Removed unnecessary options from commands, e.g. `view` now does not take an `--accountId` or `--masterAccount`
18+
- If a command does not work, please first check the commands help to see if the options have changed
19+
- For example, run `near create-account` to see how options might have changed
20+
921
## Release notes
1022

11-
**Release notes and unreleased changes can be found in the [CHANGELOG](CHANGELOG.md)**
23+
Release notes and unreleased changes can be found in the [CHANGELOG](CHANGELOG.md)
1224

1325
## Overview
1426

@@ -37,7 +49,6 @@ _Click on a command for more information and examples._
3749
| **TRANSACTIONS** | |
3850
| [`near tx-status`](#near-tx-status) | queries a transaction's status by `txHash` |
3951

40-
4152
---
4253

4354
## Setup
@@ -111,6 +122,9 @@ export NEAR_NETWORK=mainnet
111122
near send-near ... --networkId mainnet
112123
```
113124

125+
> [!WARNING]
126+
> In previous versions, `near-cli` used `NEAR_ENV` to set the network. This can still be used, but `NEAR_NETWORK` has priority over `NEAR_ENV` if both are set.
127+
114128
---
115129

116130
### Custom RPC server selection
@@ -123,7 +137,7 @@ Clear them in case you want to get back to the default RPC server.
123137

124138
Example:
125139
```bash
126-
export NEAR_TESTNET_RPC=<put_your_rpc_server_url_here>
140+
export NEAR_TESTNET_RPC=https://rpc.testnet.near.org
127141
```
128142
---
129143

bin/near-cli.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ yargs // eslint-disable-line
55
.strict()
66
.scriptName('near')
77
.middleware(require('../utils/check-version'))
8-
.middleware(require('../middleware/print-options'))
98
.middleware(require('../middleware/key-store'))
9+
.middleware(require('../middleware/retro-ledger'))
10+
.middleware(require('../middleware/print-options'))
1011
.command(require('../commands/credentials/add'))
1112
.command(require('../commands/keys/add'))
1213
.command(require('../commands/contract/call'))

middleware/retro-ledger.js

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// In v3.5.0 the argument `useLedgerKey` was a string, in v4.0.0 this was change to a boolean
2+
// Sadly, yargs assumes that --useLedgerKey='anything' is FALSE
3+
// Here we detect if an argument is `useLedgerKey=` and guide the user to the correct format
4+
5+
module.exports = async function ledgerOptions() {
6+
let path = '';
7+
8+
process.argv.forEach(arg => {
9+
path = arg.includes('--useLedgerKey=') ? arg.split('=')[1] : path;
10+
});
11+
12+
if (path != '') {
13+
console.log(`\nPlease use --useLedgerKey --ledgerPath="${path}" instead of --useLedgerKey="${path}"\n`);
14+
process.exit(0);
15+
}
16+
};

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "near-cli",
3-
"version": "4.0.11",
3+
"version": "4.0.13",
44
"description": "Simple CLI for interacting with NEAR Protocol",
55
"engines": {
66
"node": ">= 16"

utils/connect.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
const { connect: nearConnect } = require('near-api-js');
22
const { getConfig } = require('../config');
33
const { getPublicKeyForPath, signForPath } = require('./ledger');
4+
const chalk = require('chalk');
45

56
module.exports = async function connect({ keyStore, ...options }) {
67
// If using Ledger, override the signer so that it uses the Ledger device
78
if (options.signWithLedger) {
9+
console.log(chalk`\nUsing Ledger with path {blue ${options.ledgerPath}}, change path with {blue --ledgerPath}\n`);
810
options.signer = {
911
getPublicKey: () => getPublicKeyForPath(options.ledgerPath),
1012
signMessage: (m) => signForPath(m, options.ledgerPath)

utils/ledger.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ async function getPublicKeyForPath(hdKeyPath) {
1818
// cache keys to avoid confirming on Ledger multiple times
1919
if (cachedPublicKeys[hdKeyPath]) return cachedPublicKeys[hdKeyPath];
2020

21+
console.log('Trying to connect with Ledger...');
22+
2123
transport = await TransportNodeHid.create();
2224
client = await createClient(transport);
2325

24-
console.log('Getting Public Key from Ledger...');
26+
console.log('Getting public key from Ledger...');
2527

2628
try {
2729
const rawPublicKey = await client.getPublicKey(hdKeyPath);

0 commit comments

Comments
 (0)