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
The easiest way to install a Cosmos-SDK Blockchain running Polaris is to download a pre-built binary. You can find the latest binaries on the [releases](https://github.com/stargazer/releases) page.
31
+
The easiest way to install a Cosmos-SDK Blockchain running Polaris is to download a pre-built binary. You can find the latest binaries on the [releases](https://github.com/polaris/releases) page.
32
32
33
33
### From Source
34
34
@@ -65,28 +65,28 @@ Go v1.20+ or higher is required for Polaris
65
65
[Foundry](https://book.getfoundry.sh/getting-started/installation) is required for Polaris
66
66
67
67
3. Install Foundry:
68
-
68
+
polaris
69
69
```sh
70
70
curl -L https://foundry.paradigm.xyz | bash
71
71
```
72
72
73
73
**Step 2: Get Polaris source code**
74
74
75
-
Clone the `stargazer` repo from the [official repo](https://github.com/berachain/stargazer/) and check
75
+
Clone the `polaris` repo from the [official repo](https://github.com/berachain/polaris/) and check
76
76
out the `main` branch for the latest stable release.
77
77
Build the binary.
78
78
79
79
```bash
80
80
cd$HOME
81
-
git clone https://github.com/berachain/stargazer
82
-
cdstargazer
81
+
git clone https://github.com/berachain/polaris
82
+
cdpolaris
83
83
git checkout main
84
84
go run build/setup.go
85
85
```
86
86
87
87
**Step 3: Build the Node Software**
88
88
89
-
Run the following command to install `stargazerd` to your `GOPATH` and build the node. `stargazerd` is the node daemon and CLI for interacting with a stargazer node.
89
+
Run the following command to install `polard` to your `GOPATH` and build the node. `polard` is the node daemon and CLI for interacting with a polaris node.
90
90
91
91
```bash
92
92
mage install
@@ -97,14 +97,14 @@ mage install
97
97
Verify your installation with the following command:
98
98
99
99
```bash
100
-
stargazerd version --long
100
+
polard version --long
101
101
```
102
102
103
103
A successful installation will return the following:
0 commit comments