-
Notifications
You must be signed in to change notification settings - Fork 33
[Core] Deploying all-the-protocol-actors #710
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
Merged
0xBigBoss
merged 33 commits into
main
from
0xbigboss/dw-1860/core-deploying-all-the-actors
Jun 8, 2023
Merged
Changes from 32 commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
9ba8871
📝 🧬🎣🚪 all actor configs
0xBigBoss 1d79321
Add /v1/query/nodeRoles RPC endpoint and localnet updates
0xBigBoss 9603a6f
update docs
0xBigBoss e3ba3f0
add mock servicer relay rpc
0xBigBoss 0e20307
rebased, minor improvements for docker compose
0xBigBoss a76188d
clean up configs for docker compose
0xBigBoss 2302776
clean up and addressing feedback
0xBigBoss a82d65b
clean up docker compose, genesis, localnet
0xBigBoss eabd0e2
bit of clean up
0xBigBoss 9e2ca7d
add fishermen keys
0xBigBoss 548d4b7
Merge remote-tracking branch upstream/main into 0xbigboss/dw-1860/cor…
0xBigBoss 5019123
fix the tests
0xBigBoss 3d89907
add generated helm docs
invalid-email-address a0e2ebb
add missing compose services
0xBigBoss 8539e8e
golint
0xBigBoss 1d7d0ae
clean up names and configs
0xBigBoss 0273210
squash lil 🐛 and tidy up code 🧹
0xBigBoss 4feeb78
clean up and refactor actor modules
0xBigBoss 6e20fa6
Merge remote-tracking branch 'upstream/main' into 0xbigboss/dw-1860/c…
0xBigBoss cc8d3f6
merge in upstream/main
0xBigBoss b61f894
clean up docker compose, new line
0xBigBoss 71880bd
fix localnet
0xBigBoss 06af3ef
clean up actor numbers
0xBigBoss 4b0eaf8
fix panic, pass by cfg by ref
0xBigBoss cd5942d
merge service and servicer modules
0xBigBoss ebdf98c
check if cast works
0xBigBoss d222dba
clean up get modules
0xBigBoss ec97a7f
fix the interfaces
0xBigBoss 025b4ed
clean up utility and servicer module
0xBigBoss e1fb8f6
fallback to client context namespace
0xBigBoss 4302a8f
changelogs
0xBigBoss 452e7f5
Merge remote-tracking branch 'upstream/main' into 0xbigboss/dw-1860/c…
0xBigBoss fe90c0d
rm ./var directory
0xBigBoss File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| /var | ||
| .idea | ||
| .vscode | ||
| .github |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| { | ||
| "root_directory": "/go/src/github.com/pocket-network", | ||
| "private_key": "90ccfd6ba76d876e02ba09440af67582e0f4a37cbda2ce4c30b251132b670eda2777a49cdfde21867a538ddcfca05002f0115b1955a75b80e965ed63fc95f809", | ||
| "consensus": { | ||
| "max_mempool_bytes": 500000000, | ||
| "pacemaker_config": { | ||
| "timeout_msec": 10000, | ||
| "manual": true, | ||
| "debug_time_between_steps_msec": 1000 | ||
| }, | ||
| "private_key": "90ccfd6ba76d876e02ba09440af67582e0f4a37cbda2ce4c30b251132b670eda2777a49cdfde21867a538ddcfca05002f0115b1955a75b80e965ed63fc95f809", | ||
| "server_mode_enabled": true | ||
| }, | ||
| "utility": { | ||
| "max_mempool_transaction_bytes": 1073741824, | ||
| "max_mempool_transactions": 9000 | ||
| }, | ||
| "persistence": { | ||
| "postgres_url": "postgres://postgres:postgres@pocket-db:5432/postgres", | ||
| "node_schema": "fisherman1", | ||
| "block_store_path": "/var/blockstore", | ||
| "tx_indexer_path": "/var/txindexer", | ||
| "trees_store_dir": "/var/trees", | ||
| "max_conns_count": 50, | ||
| "min_conns_count": 1, | ||
| "max_conn_lifetime": "5m", | ||
| "max_conn_idle_time": "1m", | ||
| "health_check_period": "30s" | ||
| }, | ||
| "p2p": { | ||
| "hostname": "fisherman1", | ||
| "port": 42069, | ||
| "use_rain_tree": true, | ||
| "is_empty_connection_type": false, | ||
| "private_key": "90ccfd6ba76d876e02ba09440af67582e0f4a37cbda2ce4c30b251132b670eda2777a49cdfde21867a538ddcfca05002f0115b1955a75b80e965ed63fc95f809", | ||
| "max_mempool_count": 100000 | ||
| }, | ||
| "telemetry": { | ||
| "enabled": true, | ||
| "address": "0.0.0.0:9000", | ||
| "endpoint": "/metrics" | ||
| }, | ||
| "logger": { | ||
| "level": "debug", | ||
| "format": "pretty" | ||
| }, | ||
| "rpc": { | ||
| "enabled": true, | ||
| "port": 50832, | ||
| "timeout": 30000, | ||
| "use_cors": false | ||
| }, | ||
| "fisherman": { | ||
| "enabled": true | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,57 @@ | ||
| { | ||
| "root_directory": "/go/src/github.com/pocket-network", | ||
| "private_key": "e4ad8d293ebf5287e2403e6483ecb6c4e80b22b2d3effc8698dfe34eb35fc9466ac62bddc541432cff818a02bab732f815ef2e6f7099e7dddc793d62d482b451", | ||
| "consensus": { | ||
| "max_mempool_bytes": 500000000, | ||
| "pacemaker_config": { | ||
| "timeout_msec": 10000, | ||
| "manual": true, | ||
| "debug_time_between_steps_msec": 1000 | ||
| }, | ||
| "private_key": "e4ad8d293ebf5287e2403e6483ecb6c4e80b22b2d3effc8698dfe34eb35fc9466ac62bddc541432cff818a02bab732f815ef2e6f7099e7dddc793d62d482b451", | ||
| "server_mode_enabled": true | ||
| }, | ||
| "utility": { | ||
| "max_mempool_transaction_bytes": 1073741824, | ||
| "max_mempool_transactions": 9000 | ||
| }, | ||
| "persistence": { | ||
| "postgres_url": "postgres://postgres:postgres@pocket-db:5432/postgres", | ||
| "node_schema": "servicer1", | ||
| "block_store_path": "/var/blockstore", | ||
| "tx_indexer_path": "/var/txindexer", | ||
| "trees_store_dir": "/var/trees", | ||
| "max_conns_count": 50, | ||
| "min_conns_count": 1, | ||
| "max_conn_lifetime": "5m", | ||
| "max_conn_idle_time": "1m", | ||
| "health_check_period": "30s" | ||
| }, | ||
| "p2p": { | ||
| "hostname": "servicer1", | ||
| "port": 42069, | ||
| "use_rain_tree": true, | ||
| "is_empty_connection_type": false, | ||
| "private_key": "e4ad8d293ebf5287e2403e6483ecb6c4e80b22b2d3effc8698dfe34eb35fc9466ac62bddc541432cff818a02bab732f815ef2e6f7099e7dddc793d62d482b451", | ||
| "max_mempool_count": 100000 | ||
| }, | ||
| "telemetry": { | ||
| "enabled": true, | ||
| "address": "0.0.0.0:9000", | ||
| "endpoint": "/metrics" | ||
| }, | ||
| "logger": { | ||
| "level": "debug", | ||
| "format": "pretty" | ||
| }, | ||
| "rpc": { | ||
| "enabled": true, | ||
| "port": 50832, | ||
| "timeout": 30000, | ||
| "use_cors": false | ||
| }, | ||
| "servicer": { | ||
| "enabled": true, | ||
| "chains": ["0001"] | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.