Skip to content

Commit

Permalink
use urls for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandotsmith committed Jun 8, 2024
1 parent 4cf8a25 commit 11d6e4c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions indexsupply.com/shovel/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Here is a basic Config that saves ERC20 transfers
{
"name": "mainnet",
"chain_id": 1,
"url": "https://ethereum-rpc.publicnode.com"
"urls": ["https://ethereum-rpc.publicnode.com"]
}
],
"integrations": [{
Expand Down Expand Up @@ -217,7 +217,7 @@ go run ./cmd/shovel
{
"name": "mainnet",
"chain_id": 1,
"url": "https://ethereum-rpc.publicnode.com"
"urls": ["https://ethereum-rpc.publicnode.com"]
}
],
"integrations": [
Expand Down Expand Up @@ -277,7 +277,7 @@ Indexes:
{
"name": "fast",
"chain_id": 1,
"url": "https://ethereum-rpc.publicnode.com",
"urls": ["https://ethereum-rpc.publicnode.com"],
"concurrency": 10,
"batch_size": 100
}
Expand All @@ -301,8 +301,8 @@ Indexes:
{
"pg_url": "postgres:///shovel",
"eth_sources": [
{"name": "mainnet", "chain_id": 1, "url": "https://ethereum-rpc.publicnode.com"},
{"name": "goerli", "chain_id": 11155111, "url": "https://ethereum-sepolia-rpc.publicnode.com"}
{"name": "mainnet", "chain_id": 1, "urls": ["https://ethereum-rpc.publicnode.com"]},
{"name": "goerli", "chain_id": 11155111, "urls": ["https://ethereum-sepolia-rpc.publicnode.com"]}
],
"integrations": [
{
Expand Down Expand Up @@ -376,7 +376,7 @@ Indexes:
{
"name": "mainnet",
"chain_id": 1,
"url": "https://ethereum-rpc.publicnode.com"
"urls": ["https://ethereum-rpc.publicnode.com"]
}
],
"integrations": [
Expand Down Expand Up @@ -518,7 +518,7 @@ Indexes:
```
{
"pg_url": "postgres:///shovel",
"eth_sources": [{"name": "mainnet", "chain_id": 1, "url": "XXX"}],
"eth_sources": [{"name": "mainnet", "chain_id": 1, "urls": ["https://ethereum-rpc.publicnode.com"]}],
"integrations": [
{
"name": "internal-eth-transfers",
Expand Down Expand Up @@ -571,7 +571,7 @@ This config uses the contains filter operation on the tx_input to index transact
{
"pg_url": "postgres:///shovel",
"eth_sources": [
{"name": "mainnet", "chain_id": 1, "url": "https://ethereum-rpc.publicnode.com"}
{"name": "mainnet", "chain_id": 1, "urls": ["https://ethereum-rpc.publicnode.com"]}
],
"integrations": [{
"name": "specific-tx",
Expand Down
4 changes: 2 additions & 2 deletions indexsupply.com/shovel/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ Shovel is configured using declarative JSON that maps the data you care about on
{
"name": "mainnet",
"chain_id": 1,
"url": "https://ethereum-rpc.publicnode.com"
"urls": ["https://ethereum-rpc.publicnode.com"]
},
{
"name": "sepolia",
"chain_id": 11155111,
"url": "https://ethereum-sepolia-rpc.publicnode.com"
"urls": ["https://ethereum-sepolia-rpc.publicnode.com"]
}
],
"integrations": [
Expand Down

0 comments on commit 11d6e4c

Please sign in to comment.