-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #296 from covalenthq/develop
Use `go.work` to specify go module updates
- Loading branch information
Showing
18 changed files
with
237 additions
and
277 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
|
@@ -95,4 +95,5 @@ artifacts | |
|
||
ganache_data | ||
temp | ||
out | ||
out | ||
.editorconfig |
This file contains 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 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 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 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
Binary file not shown.
This file contains 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 |
---|---|---|
@@ -1,21 +1,11 @@ | ||
#!/bin/bash | ||
if [ "$BLOCKCHAIN" == "elrond" ] | ||
then | ||
timeout 120s ./bsp-agent --redis-url=redis://username:@redis:6379/0?topic=replication-2#replicate \ | ||
--avro-codec-path=./codec/block-elrond.avsc \ | ||
--binary-file-path=./bin/block-elrond/ \ | ||
--proof-chain-address=0xEa2ff902dbeEECcc828757B881b343F9316752e5\ | ||
--consumer-timeout=15 \ | ||
--websocket-urls="34.69.250.147:20000 34.69.250.147:20001 34.69.250.147:20002 34.69.250.147:20003" | ||
|
||
else | ||
./bsp-agent --redis-url=redis://username:@redis:6379/0?topic=replication#replicate \ | ||
--avro-codec-path=./codec/block-ethereum.avsc \ | ||
--binary-file-path=./bin/block-ethereum/ \ | ||
--block-divisor=3 \ | ||
--log-folder ./logs/ \ | ||
--proof-chain-address=0xEa2ff902dbeEECcc828757B881b343F9316752e5 \ | ||
--metrics --metrics.port 6063 --metrics.addr 0.0.0.0 \ | ||
--consumer-timeout=15 \ | ||
--ipfs-pinner-server="http://ipfs-pinner:3001/" | ||
fi | ||
./bsp-agent --redis-url=redis://username:@redis:6379/0?topic=replication#replicate \ | ||
--avro-codec-path=./codec/block-ethereum.avsc \ | ||
--binary-file-path=./bin/block-ethereum/ \ | ||
--block-divisor=3 \ | ||
--log-folder ./logs/ \ | ||
--proof-chain-address=0xEa2ff902dbeEECcc828757B881b343F9316752e5 \ | ||
--metrics --metrics.port 6063 --metrics.addr 0.0.0.0 \ | ||
--consumer-timeout=15 \ | ||
--ipfs-pinner-server="http://ipfs-pinner:3001/" |
This file contains 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 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 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,3 @@ | ||
go 1.22.5 | ||
|
||
use . |
Oops, something went wrong.