Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lava sync files updated #29

Merged
merged 16 commits into from
Sep 25, 2023
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." />