Skip to content

Commit

Permalink
feat: add devqa bootstrap peers (#3256)
Browse files Browse the repository at this point in the history
* feat: add devqa bootstrap peers

* fix: pass p2p-key-dir for ceramic-one binary mode
  • Loading branch information
nathanielc authored Jul 11, 2024
1 parent ae38327 commit 5fdcf92
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/ipfs-daemon/src/rust-ipfs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ async function binary(
`0.0.0.0:${apiPort}`,
'--store-dir',
dir.path,
'--p2p-key-dir',
dir.path,
'--network',
networkName === Networks.INMEMORY ? 'in-memory' : networkName,
// We can use a hard coded local network id since
Expand Down
8 changes: 8 additions & 0 deletions packages/ipfs-topology/src/ipfs-topology.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,14 @@ const BOOTSTRAP_LIST = (ceramicNetwork: Networks): Array<Multiaddr> | null => {
),
]
case Networks.DEV_UNSTABLE:
return [
multiaddr(
'/dns4/bootstrap-devqa-rust-ceramic-1.3box.io/tcp/4101/p2p/12D3KooWJmYPnXgst4gW5GoyAYzRB3upLgLVR1oDVGwjiS9Ce7sA',
),
multiaddr(
'/dns4/bootstrap-devqa-rust-ceramic-2.3box.io/tcp/4101/p2p/12D3KooWFCf7sKeW8NHoT35EutjJX5vCpPekYqa4hB4tTUpYrcam',
),
]
case Networks.LOCAL:
case Networks.INMEMORY:
return null
Expand Down

0 comments on commit 5fdcf92

Please sign in to comment.