Skip to content

Commit 026ad40

Browse files
authored
Merge pull request #332 from SethuRamanOmanakuttan/main
New Image for tokenomics and Updated Endpoints for Evmos
2 parents e14faca + 5e2816a commit 026ad40

File tree

2 files changed

+31
-31
lines changed

2 files changed

+31
-31
lines changed

docs/chains/evmos-chain/evmos-dev.md

+31-31
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,30 @@ import TabItem from '@theme/TabItem';
99
# Getting Evmos RPC
1010

1111
## Evmos ipRPC 🪙
12+
1213
Lava🌋 now offers incentivized public RPC for Evmos. Developers can get free, public endpoints for all.
1314

1415
### Mainnet 🌐
1516

16-
| Service 🔌 | URL 🔗 |
17-
|--------------------------------|------------------------------------------------------|
18-
| 🟢 tendermint-rpc | https://evmos.tendermintrpc.lava.build |
19-
| 🟢 tendermint-rpc / websocket | <wss://tm.evmos.lava.build/websocket> |
20-
| 🟢 json-rpc | https://evmos.lava.build |
21-
| 🟢 json-rpc / websocket | <wss://evmos.lava.build/websocket> |
22-
| 🟢 rest | https://evmos.rest.lava.build |
23-
| 🟢 grpc | grpc.evmos.lava.build |
17+
| Service 🔌 | URL 🔗 |
18+
| ----------------------------- | ---------------------------------------------- |
19+
| 🟢 tendermint-rpc | https://evmos.tendermintrpc.lava.build |
20+
| 🟢 tendermint-rpc / websocket | wss://evmos.tendermintrpc.lava.build/websocket |
21+
| 🟢 json-rpc | https://evmos.lava.build |
22+
| 🟢 json-rpc / websocket | wss://evmos.lava.build |
23+
| 🟢 rest | https://evmos.rest.lava.build |
24+
| 🟢 grpc | evmos.grpc.lava.build |
2425

2526
### Testnet 🧪
2627

27-
| Service 🔌 | URL 🔗 |
28-
|--------------------------------|-----------------------------------------------------|
29-
| 🟢 tendermint-rpc | https://tm.evmos-testnet.lava.build |
30-
| 🟢 tendermint-rpc / websocket | <wss://tm.evmos-testnet.lava.build/websocket> |
31-
| 🟢 json-rpc | https://evmos-testnet.lava.build |
32-
| 🟢 json-rpc / websocket | <wss://evmos-testnet.lava.build/websocket> |
33-
| 🟢 rest | https://evmost.rest.lava.build |
34-
| 🟢 grpc | grpc.evmos-testnet.lava.build |
28+
| Service 🔌 | URL 🔗 |
29+
| ----------------------------- | --------------------------------------------- |
30+
| 🟢 tendermint-rpc | https://tm.evmos-testnet.lava.build |
31+
| 🟢 tendermint-rpc / websocket | <wss://tm.evmos-testnet.lava.build/websocket> |
32+
| 🟢 json-rpc | https://evmos-testnet.lava.build |
33+
| 🟢 json-rpc / websocket | <wss://evmos-testnet.lava.build/websocket> |
34+
| 🟢 rest | https://evmost.rest.lava.build |
35+
| 🟢 grpc | grpc.evmos-testnet.lava.build |
3536

3637
<br />
3738
<hr />
@@ -53,16 +54,15 @@ To learn more about using the Lava Gateway visit the [Getting Started guide](htt
5354
```jsx
5455
// Install lavaSDK with the following command:
5556
// npm i @lavanet/lava-sdk
56-
const { LavaSDK } = require("@lavanet/lava-sdk")
57+
const { LavaSDK } = require("@lavanet/lava-sdk");
5758

5859
async function useEvmosTestnet() {
59-
6060
const evmosTestnet = await LavaSDK.create({
6161
privateKey: process.env.PRIVATE_KEY, //hide your private key in an environmental variable
62-
chainIds: 'EVMOST',
62+
chainIds: "EVMOST",
6363
});
6464

65-
const evmosBlockResponse = await evmosTestnet.sendRelay({
65+
const evmosBlockResponse = await evmosTestnet.sendRelay({
6666
method: "block",
6767
params: ["15500000"],
6868
});
@@ -71,28 +71,28 @@ async function useEvmosTestnet() {
7171
}
7272

7373
(async () => {
74-
await useEvmosTestnet();
75-
})();
74+
await useEvmosTestnet();
75+
})();
7676
```
77+
7778
</TabItem>
7879
<TabItem value="frontend" label="FrontEnd">
7980

8081
```jsx
8182
// Install lavaSDK with the following command:
8283
// npm i @lavanet/lava-sdk
83-
const { LavaSDK } = require("@lavanet/lava-sdk")
84+
const { LavaSDK } = require("@lavanet/lava-sdk");
8485

8586
async function useEvmosTestnet() {
86-
8787
const evmosTestnet = await LavaSDK.create({
8888
badge: {
89-
badgeServerAddress: "https://badges.lavanet.xyz", // Or your own Badge-Server URL
90-
projectId: "enter_your_project_id_here"
89+
badgeServerAddress: "https://badges.lavanet.xyz", // Or your own Badge-Server URL
90+
projectId: "enter_your_project_id_here",
9191
},
92-
chainIds: 'EVMOST',
92+
chainIds: "EVMOST",
9393
});
9494

95-
const evmosBlockResponse = await evmosTestnet.sendRelay({
95+
const evmosBlockResponse = await evmosTestnet.sendRelay({
9696
method: "block",
9797
params: ["15500000"],
9898
});
@@ -101,8 +101,8 @@ async function useEvmosTestnet() {
101101
}
102102

103103
(async () => {
104-
await useEvmosTestnet();
105-
})();
104+
await useEvmosTestnet();
105+
})();
106106
```
107107

108108
</TabItem>
@@ -114,4 +114,4 @@ async function useEvmosTestnet() {
114114

115115
To learn more about our SDK visit the [Getting Started guide](https://docs.lavanet.xyz/sdk-getting-started?utm_source=getting-evmos-rpc&utm_medium=docs&utm_campaign=docs-to-docs)
116116

117-
<hr />
117+
<hr />

static/img/tokenomics/chart1.png

472 KB
Loading

0 commit comments

Comments
 (0)