This repository has been archived by the owner on Jun 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 359
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
334 additions
and
262 deletions.
There are no files selected for viewing
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 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
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,19 @@ | ||
events {} | ||
|
||
http { | ||
upstream nodes { | ||
server polard-node0:8545; | ||
server polard-node1:8545; | ||
server polard-node2:8545; | ||
server polard-node3:8545; | ||
} | ||
|
||
server { | ||
listen 80; | ||
location / { | ||
proxy_pass http://nodes; | ||
proxy_set_header Host $host; | ||
proxy_set_header X-Real-IP $remote_addr; | ||
} | ||
} | ||
} |
Empty file.
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,65 @@ | ||
# SPDX-License-Identifier: BUSL-1.1 | ||
# | ||
# Copyright (C) 2023, Berachain Foundation. All rights reserved. | ||
# Use of this software is govered by the Business Source License included | ||
# in the LICENSE file of this repository and at www.mariadb.com/bsl11. | ||
# | ||
# ANY USE OF THE LICENSED WORK IN VIOLATION OF THIS LICENSE WILL AUTOMATICALLY | ||
# TERMINATE YOUR RIGHTS UNDER THIS LICENSE FOR THE CURRENT AND ALL OTHER | ||
# VERSIONS OF THE LICENSED WORK. | ||
# | ||
# THIS LICENSE DOES NOT GRANT YOU ANY RIGHT IN ANY TRADEMARK OR LOGO OF | ||
# LICENSOR OR ITS AFFILIATES (PROVIDED THAT YOU MAY USE A TRADEMARK OR LOGO OF | ||
# LICENSOR AS EXPRESSLY REQUIRED BY THIS LICENSE). | ||
# | ||
# TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON | ||
# AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, | ||
# EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF | ||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND | ||
# TITLE. | ||
|
||
KEY="brick" | ||
CHAINID="berachain-666" | ||
MONIKER="brickchain" | ||
KEYRING="test" | ||
KEYALGO="eth_secp256k1" | ||
LOGLEVEL="info" | ||
HOMEDIR="data/.polard" | ||
TRACE="" | ||
GENESIS=$HOMEDIR/config/genesis.json | ||
TMP_GENESIS=$HOMEDIR/config/tmp_genesis.json | ||
|
||
if [ "$(ls -A $HOMEDIR)" ]; then | ||
echo "$HOMEDIR is not empty" | ||
polard start --pruning=nothing "$TRACE" --log_level $LOGLEVEL --api.enabled-unsafe-cors --api.enable --api.swagger --minimum-gas-prices=0.0001abera --home "$HOMEDIR" | ||
else | ||
echo "$HOMEDIR is empty, creating a new network" | ||
|
||
polard init $MONIKER -o --chain-id $CHAINID --home "$HOMEDIR" | ||
|
||
jq '.app_state["staking"]["params"]["bond_denom"]="abera"' "$GENESIS" >"$TMP_GENESIS" | ||
jq '.app_state["crisis"]["constant_fee"]["denom"]="abera"' "$GENESIS" >"$TMP_GENESIS" | ||
jq '.app_state["gov"]["deposit_params"]["min_deposit"][0]["denom"]="abera"' "$GENESIS" >"$TMP_GENESIS" | ||
jq '.app_state["evm"]["params"]["evm_denom"]="abera"' "$GENESIS" >"$TMP_GENESIS" | ||
jq '.app_state["mint"]["params"]["mint_denom"]="abera"' "$GENESIS" >"$TMP_GENESIS" | ||
jq '.consensus["params"]["block"]["max_gas"]="30000000"' "$GENESIS" >"$TMP_GENESIS" | ||
mv "$TMP_GENESIS" "$GENESIS" | ||
|
||
polard config set client keyring-backend $KEYRING --home "$HOMEDIR" | ||
polard config set client chain-id "$CHAINID" --home "$HOMEDIR" | ||
|
||
polard keys add $KEY --keyring-backend $KEYRING --algo $KEYALGO --home "$HOMEDIR" | ||
|
||
polard genesis add-genesis-account $KEY 100000000000000000000000000abera --keyring-backend $KEYRING --home "$HOMEDIR" | ||
|
||
# polard genesis add-genesis-account cosmos1yrene6g2zwjttemf0c65fscg8w8c55w58yh8rl 100000000000000000000000000abera --keyring-backend $KEYRING --home "$HOMEDIR" | ||
|
||
polard genesis gentx $KEY 1000000000000000000000abera --keyring-backend $KEYRING --chain-id $CHAINID --home "$HOMEDIR" | ||
|
||
polard genesis collect-gentxs --home "$HOMEDIR" | ||
|
||
polard genesis validate-genesis --home "$HOMEDIR" | ||
|
||
polard start --pruning=nothing "$TRACE" --log_level $LOGLEVEL --api.enabled-unsafe-cors --api.enable --api.swagger --minimum-gas-prices=0.0001abera --home "$HOMEDIR" | ||
polard start --pruning=nothing '' --log_level info --api.enabled-unsafe-cors --api.enable --api.swagger --minimum-gas-prices=0.0001abera --home data/.polard | ||
fi |
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,54 @@ | ||
#!/bin/bash | ||
# SPDX-License-Identifier: BUSL-1.1 | ||
# | ||
# Copyright (C) 2023, Berachain Foundation. All rights reserved. | ||
# Use of this software is govered by the Business Source License included | ||
# in the LICENSE file of this repository and at www.mariadb.com/bsl11. | ||
# | ||
# ANY USE OF THE LICENSED WORK IN VIOLATION OF THIS LICENSE WILL AUTOMATICALLY | ||
# TERMINATE YOUR RIGHTS UNDER THIS LICENSE FOR THE CURRENT AND ALL OTHER | ||
# VERSIONS OF THE LICENSED WORK. | ||
# | ||
# THIS LICENSE DOES NOT GRANT YOU ANY RIGHT IN ANY TRADEMARK OR LOGO OF | ||
# LICENSOR OR ITS AFFILIATES (PROVIDED THAT YOU MAY USE A TRADEMARK OR LOGO OF | ||
# LICENSOR AS EXPRESSLY REQUIRED BY THIS LICENSE). | ||
# | ||
# TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON | ||
# AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, | ||
# EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF | ||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND | ||
# TITLE. | ||
|
||
|
||
# Execute the cURL command and capture the response | ||
response=$(curl -s -X POST -H "Content-Type: application/json" -d '{ | ||
"jsonrpc":"2.0", | ||
"method": "eth_blockNumber", | ||
"params": [], | ||
"id": 1 | ||
}' http://localhost:8545) | ||
|
||
height=$(echo "$response" | jq -r '.result') | ||
|
||
file="last_height.txt" | ||
|
||
# Check if the file exists | ||
if [ -e "$file" ]; then | ||
# Read the contents of the file into the result variable | ||
last_height=$(cat "$file") | ||
else | ||
# File does not exist, set result to an empty string | ||
last_height="" | ||
fi | ||
|
||
rm $file | ||
echo "$height" >> $file | ||
|
||
# Check if the two input strings are equal | ||
if [ "$height" == "$last_height" ]; then | ||
# Strings are equal, return 1 | ||
exit 1 | ||
else | ||
# Strings are not equal, return 0 | ||
exit 0 | ||
fi |
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,38 @@ | ||
#!/bin/bash | ||
# SPDX-License-Identifier: BUSL-1.1 | ||
# | ||
# Copyright (C) 2023, Berachain Foundation. All rights reserved. | ||
# Use of this software is govered by the Business Source License included | ||
# in the LICENSE file of this repository and at www.mariadb.com/bsl11. | ||
# | ||
# ANY USE OF THE LICENSED WORK IN VIOLATION OF THIS LICENSE WILL AUTOMATICALLY | ||
# TERMINATE YOUR RIGHTS UNDER THIS LICENSE FOR THE CURRENT AND ALL OTHER | ||
# VERSIONS OF THE LICENSED WORK. | ||
# | ||
# THIS LICENSE DOES NOT GRANT YOU ANY RIGHT IN ANY TRADEMARK OR LOGO OF | ||
# LICENSOR OR ITS AFFILIATES (PROVIDED THAT YOU MAY USE A TRADEMARK OR LOGO OF | ||
# LICENSOR AS EXPRESSLY REQUIRED BY THIS LICENSE). | ||
# | ||
# TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON | ||
# AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, | ||
# EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF | ||
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND | ||
# TITLE. | ||
|
||
|
||
# Execute the cURL command and capture the response | ||
response=$(curl -s -X POST -H "Content-Type: application/json" -d '{ | ||
"jsonrpc":"2.0", | ||
"method": "eth_syncing", | ||
"params": [], | ||
"id": 1 | ||
}' http://localhost:8545) | ||
|
||
# Check if the response contains the "result" field | ||
if echo "$response" | grep -q '"result":.*false'; then | ||
echo "Syncing is not in progress" | ||
exit 0 # Exit with success code | ||
else | ||
echo "Syncing is in progress or port is not up" | ||
exit 1 # Exit with failed code | ||
fi |
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
Oops, something went wrong.