Skip to content

Commit

Permalink
lava sync files updated (#29)
Browse files Browse the repository at this point in the history
* stateSyncLava.ts created

* state-sync.mdx created

* peers-seeds.mdx created

* addrbook.mdx сreated

* _category_.json created

* explorers.md created

* telegram-bots.md created

* other-tools.md created

* addrBook.ts updated

* addrBook.ts updated

* state-sync.mdx updated

* peers-seeds.mdx updated

* addrbook.mdx updated

* addrbook.mdx updated
  • Loading branch information
redwest88 authored Sep 25, 2023
1 parent 133808b commit 3f31293
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
20 changes: 20 additions & 0 deletions docs/lava-network/sync/addrbook.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,23 @@ description: AddrBook
# AddrBook

> Address book refers to a local database or record that a node maintains of all the peers it has come into contact with or learned about. This helps in the peer discovery process.
import SelectPaste from '@site/src/components/SelectPaste';

import { addrBook } from '@site/src/components/SelectPaste/addrBook.ts';

export let endpoints = [
'https://anode.team/Lava/test/addrbook.json',
'http://snapshots.autostake.com/lava-testnet-2/addrbook.json',
'https://services.lava-testnet-2.lava.aviaone.com/addrbook.json',
'https://testnet-files.itrocket.net/lava/addrbook.json',
'https://snapshots.kjnodes.com/lava-testnet/addrbook.json',
'https://share101.utsa.tech/lava/addrbook.json',
'https://snapshots.liveraven.net/snapshots/lava/addrbook.json',
'https://snapshots-testnet.nodejumper.io/lava-testnet/addrbook.json',
'https://ss-t.lava.nodestake.top/addrbook.json',
'https://snap.nodexcapital.com/nolus/addrbook.json',
'https://snapshots.polkachu.com/testnet-addrbook/lava/addrbook.json',
];

<SelectPaste endpoints={endpoints} codeTemplate={addrBook} tip="Click on any endpoint to paste it into the code block." />
4 changes: 4 additions & 0 deletions docs/lava-network/sync/peers-seeds.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ description: Live Peers / Seeds
:::info
Copy and run the commands below to add your peers into `config.toml`.
:::

import LivePeers from '@site/src/components/LivePeers';

<LivePeers rpc="https://lava-testnet-rpc.polkachu.com" />
10 changes: 5 additions & 5 deletions docs/lava-network/sync/state-sync.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description: State Sync
import SelectPaste from '@site/src/components/SelectPaste';

import { stateSync } from '@site/src/components/SelectPaste/stateSyncLava.ts';
import { stateSync } from '@site/src/components/SelectPaste/stateSync.ts';

export let endpoints = [
'https://lava.rpc.t.anode.team',
Expand All @@ -19,10 +19,10 @@ export let endpoints = [
'https://t-lava.rpc.utsa.tech',
'https://lava.rpc.liveraven.net',
'https://lava-testnet.nodejumper.io:443',
'https://rpc-t.lava.nodestake.top',
'https://rpc.lava-t.nodexcapital.com',
'https://lava-testnet-rpc.polkachu.com',
'https://lava-testnet.rpc.stakevillage.net:443',
'https://rpc-t.lava.nodestake.top',
'https://rpc.lava-t.nodexcapital.com',
'https://lava-testnet-rpc.polkachu.com',
'https://lava-testnet.rpc.stakevillage.net:443',
];

<SelectPaste endpoints={endpoints} codeTemplate={stateSync} tip="Click on any RPC to paste it into the code block." />

0 comments on commit 3f31293

Please sign in to comment.