Skip to content

Instantly share code, notes, and snippets.

View jaybxyz's full-sized avatar
🌕
Researching. Building. Shipping.

JayB jaybxyz

🌕
Researching. Building. Shipping.
View GitHub Profile
@jaybxyz
jaybxyz / simapp-abstract-account-priv_validator_key.json
Last active August 23, 2023 06:59
simapp-abstract-account-priv_validator_key.json
{
"address": "4FE87B1C78BBF32E2E35849307C93DBBFD300681",
"pub_key": {
"type": "tendermint/PubKeyEd25519",
"value": "hsSYCqBXtwNTYyV5ud/tYyB+78og7VztfWBvlBKEu8U="
},
"priv_key": {
"type": "tendermint/PrivKeyEd25519",
"value": "/ppkmms5uqabDMjwTldeiuW7Ssv2XPqRoZRJoAzTl+CGxJgKoFe3A1NjJXm53+1jIH7vyiDtXO19YG+UEoS7xQ=="
}
@jaybxyz
jaybxyz / simapp-abstract-account-genesis.json
Last active August 23, 2023 07:22
simapp-abstract-account-genesis.json
{
"genesis_time": "2023-08-23T04:34:59.107847Z",
"chain_id": "localnet",
"initial_height": "1",
"consensus_params": {
"block": {
"max_bytes": "22020096",
"max_gas": "-1"
},
"evidence": {
@jaybxyz
jaybxyz / jq-cheetsheet.md
Created May 5, 2021 01:40 — forked from olih/jq-cheetsheet.md
jq Cheet Sheet

Processing JSON using jq

jq is useful to slice, filter, map and transform structured json data.

Installing jq

On Mac OS

brew install jq

@jaybxyz
jaybxyz / Update git fork with tags.sh
Created October 16, 2019 05:45 — forked from Saissaken/Update git fork with tags.sh
Update git fork with tags
# Repo: someuser/myframework
# Fork: superteam/myframework
# Track:
git clone https://github.com/superteam/myframework.git
cd myframework
git remote add upstream https://github.com/someuser/myframework.git
# Update:
git fetch upstream