Skip to content

Commit aeb50e8

Browse files
committed
Rename Phoenix to Phoenix Legacy
1 parent 3baa712 commit aeb50e8

File tree

3 files changed

+11
-12
lines changed

3 files changed

+11
-12
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "phoenix-cli"
33
version = "0.3.14"
4-
description = "CLI and associated library for interacting with the Phoenix program from the command line"
4+
description = "CLI and associated library for interacting with the Phoenix Legacy program from the command line"
55
edition = "2021"
66
license = "MIT"
77

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# phoenix-cli
2-
CLI for interacting with the Phoenix DEX
2+
CLI for interacting with the Phoenix Legacy DEX
33

44
## Program Deployments
55

66
| Program | Devnet |
77
| ----------- | ---------------------------------------------- |
8-
| Phoenix Dex | `PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY` |
8+
| Phoenix Legacy DEX | `PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY` |
99

1010
| Program | Mainnet |
1111
| ----------- | ---------------------------------------------- |
12-
| Phoenix Dex | `PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY` |
12+
| Phoenix Legacy DEX | `PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY` |
1313

1414
## Installation
1515

@@ -20,7 +20,7 @@ Run the following command in your shell to install it (or visit https://rustup.r
2020
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
2121
```
2222

23-
To install the Phoenix CLI, run the following in your shell:
23+
To install the Phoenix Legacy CLI, run the following in your shell:
2424

2525
```
2626
cargo install phoenix-cli
@@ -43,7 +43,7 @@ Optionally include the following parameters when running the cli:
4343

4444

4545
### get-all-markets
46-
Returns summary information on all markets that exist on Phoenix. Summary information includes market key, base and quote token keys, and authority key. Recommended to use the no-gpa flag to read from a static config file and avoiding making an expensive network call.
46+
Returns summary information on all markets that exist on Phoenix Legacy. Summary information includes market key, base and quote token keys, and authority key. Recommended to use the no-gpa flag to read from a static config file and avoiding making an expensive network call.
4747

4848
`$ phoenix-cli -u main get-all-markets --no-gpa`
4949
```
@@ -236,4 +236,3 @@ Tokens minted! Signature: 2mN6o7gBB41UFEboQuCMaeG1t5qQ1uRAvTDoXUhsk1yBoKXQtrXsHV
236236

237237

238238

239-

phoenix-cli-install.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22
#
3-
# Phoenix CLI binary installation script
3+
# Phoenix Legacy CLI binary installation script
44
#
55
# The purpose of this script is to automate the download and installation
6-
# of Phoenix CLI binary.
6+
# of Phoenix Legacy CLI binary.
77
#
88
# Currently the supported platforms are macOS, Linux
99
#
@@ -19,7 +19,7 @@ abort_on_error() {
1919
fi
2020
}
2121

22-
CYN "Phoenix CLI installation script"
22+
CYN "Phoenix Legacy CLI installation script"
2323
echo "---------------------------------------"
2424
echo ""
2525

@@ -69,7 +69,7 @@ abort_on_error $?
6969
SIZE=$(wc -c "$SOURCE/$DIST" | grep -oE "[0-9]+" | head -n 1)
7070

7171
if [ $SIZE -eq 0 ]; then
72-
RED "Aborting: could not download Phoenix distribution"
72+
RED "Aborting: could not download Phoenix Legacy distribution"
7373
exit 1
7474
fi
7575

@@ -86,7 +86,7 @@ if [ ! "$(command -v $BIN)" = "" ]; then
8686
# replace it
8787
EXISTING="$(which $BIN)"
8888

89-
echo "Phoenix binary was found at:"
89+
echo "Phoenix Legacy binary was found at:"
9090
echo " => $(CYN $EXISTING)"
9191
echo ""
9292
echo -n "$(CYN "Replace it? [y/n]") (default 'n'): "

0 commit comments

Comments
 (0)