-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add .DS_Store to .gitignore, add chainInfo.json, update file paths, a…
…dd init_dir.sh script
- Loading branch information
1 parent
60bcbcc
commit 1078913
Showing
4 changed files
with
34 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ provingKey.txt | |
verificationKey.txt | ||
verificationKey.json | ||
.idea | ||
.DS_Store |
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,15 @@ | ||
{ | ||
"chainInfo": { | ||
"chainID": "aircosmic_2605-1107", | ||
"key": "AccountName", | ||
"moniker": "ChainName" | ||
}, | ||
"daInfo": { | ||
"daSelected": "Celestia", | ||
"daWalletAddress": "0xaddress", | ||
"daWalletKeypair": "0xaddress" | ||
}, | ||
"sequencerInfo": { | ||
"sequencerType": "Air Sequencer" | ||
} | ||
} |
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,13 @@ | ||
sudo rm -rf data/leveldb | ||
mkdir -p data/leveldb/batches | ||
mkdir -p data/leveldb/blocks | ||
mkdir -p data/leveldb/proof | ||
mkdir -p data/leveldb/publicWitness | ||
mkdir -p data/leveldb/static | ||
mkdir -p data/leveldb/tx | ||
touch data/blockCount.txt | ||
touch data/transactionCount.txt | ||
touch data/batchCount.txt | ||
echo "0" > data/blockCount.txt | ||
echo "0" > data/transactionCount.txt | ||
echo "0" > data/batchCount.txt |