You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 4, 2024. It is now read-only.
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.
6
4
7
5
**Note:** Node.js version 16+ is required to run NEAR CLI.
8
6
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
+
9
21
## Release notes
10
22
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)
12
24
13
25
## Overview
14
26
@@ -37,7 +49,6 @@ _Click on a command for more information and examples._
37
49
|**TRANSACTIONS**||
38
50
|[`near tx-status`](#near-tx-status)| queries a transaction's status by `txHash`|
39
51
40
-
41
52
---
42
53
43
54
## Setup
@@ -111,6 +122,9 @@ export NEAR_NETWORK=mainnet
111
122
near send-near ... --networkId mainnet
112
123
```
113
124
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
+
114
128
---
115
129
116
130
### Custom RPC server selection
@@ -123,7 +137,7 @@ Clear them in case you want to get back to the default RPC server.
0 commit comments