@rareprotocol/rare-cli 0.2.1 → 0.2.2
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/README.md +4 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,9 +70,7 @@ Private keys are masked in the output.
|
|
|
70
70
|
|
|
71
71
|
All commands accept `--chain` to select a network. Defaults to `sepolia`.
|
|
72
72
|
|
|
73
|
-
Supported chains: `mainnet`, `sepolia`, `base`, `base-sepolia`
|
|
74
|
-
|
|
75
|
-
> **Note:** RARE Protocol deploy and auction commands are currently available on `mainnet` and `sepolia` only.
|
|
73
|
+
Supported chains (including deploy, mint, import, and auction flows): `mainnet`, `sepolia`, `base`, `base-sepolia`
|
|
76
74
|
|
|
77
75
|
### Deploy an NFT Collection
|
|
78
76
|
|
|
@@ -203,7 +201,7 @@ rare configure --chain sepolia --private-key 0x... --rpc-url https://...
|
|
|
203
201
|
|
|
204
202
|
# Configure multiple chains
|
|
205
203
|
rare configure --chain base --rpc-url https://your-base-rpc.com
|
|
206
|
-
rare configure --chain
|
|
204
|
+
rare configure --chain base-sepolia --private-key 0x... --rpc-url https://your-base-sepolia-rpc.com
|
|
207
205
|
|
|
208
206
|
# Change default network
|
|
209
207
|
rare configure --default-chain mainnet
|
|
@@ -226,6 +224,8 @@ rare configure --show
|
|
|
226
224
|
|---|---|---|
|
|
227
225
|
| Sepolia | `0x3c7526a0975156299ceef369b8ff3c01cc670523` | `0xC8Edc7049b233641ad3723D6C60019D1c8771612` |
|
|
228
226
|
| Mainnet | `0xAe8E375a268Ed6442bEaC66C6254d6De5AeD4aB1` | `0x6D7c44773C52D396F43c2D511B81aa168E9a7a42` |
|
|
227
|
+
| Base Sepolia | `0x2b181ae0f1aea6fed75591b04991b1a3f9868d51` | `0x1f0c946f0ee87acb268d50ede6c9b4d010af65d2` |
|
|
228
|
+
| Base | `0xf776204233bfb52ba0ddff24810cbdbf3dbf94dd` | `0x51c36ffb05e17ed80ee5c02fa83d7677c5613de2` |
|
|
229
229
|
|
|
230
230
|
## Underlying Solidity Contracts
|
|
231
231
|
|
package/dist/index.js
CHANGED
|
@@ -3559,7 +3559,7 @@ Contract imported successfully.`);
|
|
|
3559
3559
|
|
|
3560
3560
|
// src/index.ts
|
|
3561
3561
|
var program = new Command10();
|
|
3562
|
-
program.name("rare").description("CLI tool for interacting with the RARE protocol smart contracts").version("0.2.
|
|
3562
|
+
program.name("rare").description("CLI tool for interacting with the RARE protocol smart contracts").version("0.2.2");
|
|
3563
3563
|
program.addCommand(configureCommand());
|
|
3564
3564
|
program.addCommand(deployCommand());
|
|
3565
3565
|
program.addCommand(mintCommand());
|