Skip to content

Commit 250cb3a

Browse files
committed
Updated to show Nibiru Mainnet
1 parent 47d603b commit 250cb3a

File tree

3 files changed

+23
-38
lines changed

3 files changed

+23
-38
lines changed

docs/connect-blockchain/evm/nibiru/react-native.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,22 +64,22 @@ For Nibiru, the steps for creating a local block explorer are mentioned
6464
### Getting the `chainConfig`
6565

6666
<Tabs
67-
defaultValue="localnet"
67+
defaultValue="mainnet"
6868
values={[
69-
{ label: "Localnet", value: "localnet", },
69+
{ label: "Mainnet", value: "mainnet", },
7070
]}
7171
>
7272
<TabItem
73-
value="localnet"
73+
value="mainnet"
7474
>
7575

7676
```typescript
7777
const chainConfig = {
7878
chainNamespace: ChainNamespace.EIP155,
79-
chainId: "0x100",
80-
rpcTarget: "http://127.0.0.1:8545",
81-
displayName: "Nibiru Localnet",
82-
blockExplorer: "http://localhost:8080", // See the info placard above
79+
chainId: "0x1AF4",
80+
rpcTarget: "https://evm-rpc.nibiru.fi",
81+
displayName: "Nibiru Mainnet",
82+
blockExplorer: "https://nibiru.fi/explorer", // See the info placard above
8383
ticker: "NIBI",
8484
tickerName: "Nibiru",
8585
};

docs/connect-blockchain/evm/nibiru/unity.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,19 @@ For Nibiru, the steps for creating a local block explorer are mentioned
5454
:::
5555

5656
<Tabs
57-
defaultValue="localnet"
57+
defaultValue="mainnet"
5858
values={[
59-
{ label: "Localnet", value: "localnet", },
59+
{ label: "Mainnet", value: "mainnet", },
6060
]}
6161
>
6262
<TabItem
63-
value="localnet"
63+
value="mainnet"
6464
>
6565

66-
- Chain ID: 0x100
67-
- Public RPC URL: http://127.0.0.1:8545
68-
- Display Name: Nibiru Localnet
69-
- Block Explorer Link: (See the info placard above)
66+
- Chain ID: 0x1AF4
67+
- Public RPC URL: https://evm-rpc.nibiru.fi
68+
- Display Name: Nibiru Mainnet
69+
- Block Explorer Link: https://nibiru.fi/explorer
7070
- Ticker: NIBI
7171
- Ticker Name: Nibiru
7272

src/common/docs/general-connect-blockchain/_nibiru.mdx

Lines changed: 9 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,23 @@ import Tabs from "@theme/Tabs";
22
import TabItem from "@theme/TabItem";
33

44
<Tabs
5-
defaultValue="localnet"
5+
defaultValue="mainnet"
66
values={[
7-
{ label: "Localnet", value: "localnet", },
7+
{ label: "Mainnet", value: "mainnet", },
88
]}
99
>
1010
<TabItem
11-
value="localnet"
11+
value="mainnet"
1212
>
1313

14-
- Chain ID: 0x100 (hex of 256)
15-
- Public RPC URL: http://127.0.0.1:8545 (Avoid using public rpcTarget in production)
16-
- Display Name: Nibiru Localnet
17-
- Block Explorer Link: http://localhost:8080
14+
- Chain ID: 0x1AF4 (hex of 6900)
15+
- Public RPC URL: https://evm-rpc.nibiru.fi (Avoid using public rpcTarget in production)
16+
- Display Name: Nibiru Mainnet
17+
- Block Explorer Link: https://nibiru.fi/explorer
1818
- Ticker: NIBI
19-
- Ticker Name: Nibiru Chain
19+
- Ticker Name: Nibiru Mainnet
2020
- Logo: https://nibiru.fi/_astro/nibi-logomark-profile-pic.DoOUhpoa.svg
2121

22-
:::note
23-
24-
Nibiru is EVM compatible only for localnet for now. Kindly refer to the
25-
[Nibiru documentation](https://nibiru.fi/docs/dev/evm/) and
26-
[Nibiru Networks](https://nibiru.fi/docs/dev/networks/#evm-network-configs) for the latest updates
27-
and EVM-related configs.
28-
29-
:::
30-
31-
:::info
32-
33-
For Nibiru, the steps for creating a local block explorer are mentioned
34-
[here](https://nibiru.fi/docs/dev/evm/quickstart.html#_4-local-explorer-optional).
35-
36-
:::
37-
3822
</TabItem>
23+
3924
</Tabs>

0 commit comments

Comments
 (0)