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

Cyberindex migration and fix bugs #194

Merged
merged 10 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions .env
Original file line number Diff line number Diff line change
@@ -1,22 +1,4 @@
CHAIN_PREFIX=bostrom
POSTGRES_DB_FOLDER=$HOME/.cyberindex/postgres
POSTGRES_DB_HOST=localhost
POSTGRES_DB_PORT=5432
POSTGRES_DB_NAME=cyberindex
POSTGRES_USER_NAME=cyber
POSTGRES_DB_PASSWORD=1cyberindex1
POSTGRES_SSL_MODE=disable
POSTGRES_DB=cyberindex
POSTGRES_USER=cyber
POSTGRES_PASSWORD=1cyberindex1
HASURA_PORT=8090
HASURA_ADMIN_SECRET=1hasura1
HASURA_GRAPHQL_DATABASE_URL=postgres://${POSTGRES_USER_NAME}:${POSTGRES_DB_PASSWORD}@cyberindex_postgres:${POSTGRES_DB_PORT}/${POSTGRES_DB_NAME}
HASURA_GRAPHQL_ENABLE_CONSOLE="true"
HASURA_GRAPHQL_ENABLED_LOG_TYPES=startup,http-log,webhook-log,websocket-log,query-log
HASURA_GRAPHQL_ADMIN_SECRET=${HASURA_ADMIN_SECRET:-1hasura1}
HASURA_GRAPHQL_UNAUTHORIZED_ROLE=anonymous
JUNO_WORKERS=1
RPC_URL=http://localhost:26657
GRPC_URL=http://localhost:9090
IPFS_PROFILE=server
Expand Down
20 changes: 14 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,44 +1,52 @@
# Provider for The Great Web

## Dream

Install nix on barebone with full sync of config from bip39 (public avatar) + cryptonote (private avatar) mnemonics

## Vision

Cybernode is a Hero's weapon in the fight for freedom and decentralization. It transforms a Hero into a Great Web provider. It is the tool to deploy, operate, maintain, and monitor major protocols required for next-generation browsers.

Checkout the [roadmap](./roadmap.md) of cybernode.
## Run your own cybernode

Checkout the [guide](./cybernode_manual) ow to setup your cybernode.

## Backend services provided by cybernode.ai

### Bostrom

- Bostrom [RPC](https://rpc.bostrom.cybernode.ai:443)
- Bostrom [REST](https://lcd.bostrom.cybernode.ai:443)
- Bostrom [index](https://index.bostrom.cybernode.ai)
- Bostrom [websocket](wss://rpc.bostrom.cybernode.ai/websocket)
- Bostrom [GRPC](https://grpc.bostrom.cybernode.ai:1443)

### Cosmoshub

- Cosmoshub-4 [RPC](https://rpc.cosmoshub-4.cybernode.ai:443)
- Cosmoshub-4 [REST](https://lcd.cosmoshub-4.cybernode.ai)
- Cosmoshub-4 [GRPC](https://grpc.cosmoshub-4.cybernode.ai:1443)

### Ethereum

- Ethereum [RPC](https://rpc.ethereum.cybernode.ai)
- Ethereum [websocket](wss://ws.ethereum.cybernode.ai)

### IPFS

- IPFS [gateway](https://gateway.ipfs.cybernode.ai)
- IPFS peer \
`/ip4/135.181.19.86/tcp/4001/p2p/12D3KooWNMcnoQynAY9hyi4JxzSu64BsRGcJ9z7vKghqk8sTrpqY`, `/ip4/88.99.105.146/tcp/4001/p2p/QmUgmRxoLtGERot7Y6G7UyF6fwvnusQZfGR15PuE6pY3aB`
- IPFS Cluster p2p peer \
`/ip4/135.181.19.86/tcp/9096/p2p/12D3KooWRkf2iZHfy1mUrdReHBFXu8TWWzK1XzsMy8TXqVohwEtH`, `/ip4/88.99.105.146/tcp/9096/p2p/12D3KooWGJvMBPGSQtLeXJgL11wmK67Tp2v69A1Q4rp5FjoSGBNd`

### Axelar

- Axelar [ssl RPC](https://rpc.axelar-dojo-1.cybernode.ai:443), [non-ssl RPC](http://rpc.axelar-dojo-1.cybernode.ai:26657)
- Axelar [ssl REST](https://lcd.axelar-dojo-1.cybernode.ai:443), [non-ssl REST](http://lcd.axelar-dojo-1.cybernode.ai:26317)
- Axelar [ssl GRPC](https://grpc.axelar-dojo-1.cybernode.ai:1443), [non-ssl GRPC](http://grpc.axelar-dojo-1.cybernode.ai:26090)

Uptime of services can be checked at [monitor](https://cybernode.ai).


## Testnets endpoints

### osmo-test-4

- Osmo [ssl RPC](https://rpc.osmo-test-4.cybernode.ai:443), [non-ssl RPC](http://rpc.osmo-test-4.cybernode.ai:26657)
Expand Down
Loading