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 is a TOML config file. | |
# For more information, see https://github.com/toml-lang/toml | |
############################################################################### | |
### Base Configuration ### | |
############################################################################### | |
# The minimum gas prices a validator is willing to accept for processing a | |
# transaction. A transaction's fees must meet the minimum of any denomination | |
# specified in this config (e.g. 0.25token1;0.0001token2). |
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
# HELP acknowledgement_events_total Number of WriteAcknowledgement events received | |
# TYPE acknowledgement_events_total counter | |
acknowledgement_events_total{chain="coreum-devnet-1",channel="channel-0",counterparty="theta-testnet-001",port="transfer",service_name="unknown_service",otel_scope_name="hermes",otel_scope_version=""} 0 | |
acknowledgement_events_total{chain="coreum-devnet-1",channel="channel-1",counterparty="osmo-test-5",port="transfer",service_name="unknown_service",otel_scope_name="hermes",otel_scope_version=""} 0 | |
acknowledgement_events_total{chain="osmo-test-5",channel="channel-0",counterparty="theta-testnet-001",port="transfer",service_name="unknown_service",otel_scope_name="hermes",otel_scope_version=""} 0 | |
acknowledgement_events_total{chain="osmo-test-5",channel="channel-12",counterparty="theta-testnet-001",port="transfer",service_name="unknown_service",otel_scope_name="hermes",otel_scope_version=""} 0 | |
acknowledgement_events_total{chain="osmo-test-5",channel="channel-199",counterparty="theta-testnet |
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 is a TOML config file. | |
# For more information, see https://github.com/toml-lang/toml | |
# NOTE: Any path below can be absolute (e.g. "/var/myawesomeapp/data") or | |
# relative to the home directory (e.g. "data"). The home directory is | |
# "$HOME/.tendermint" by default, but could be changed via $TMHOME env variable | |
# or --home cmd flag. | |
####################################################################### | |
### Main Base Config Options ### |
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
{ | |
"data": { | |
"communityPool": [ | |
{ | |
"coins": [ | |
{ | |
"denom": "utestcore", | |
"amount": "265339915641.245857304685609866" | |
} | |
], |
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
{ | |
"genesis_time": "2022-06-27T12:00:00Z", | |
"chain_id": "coreum-devnet-1", | |
"initial_height": "1", | |
"consensus_params": { | |
"block": { | |
"max_bytes": "22020096", | |
"max_gas": "50000000", | |
"time_iota_ms": "1000" | |
}, |
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
11:36AM INF No addresses to dial. Falling back to seeds module=pex | |
11:36AM INF Ensure peers module=pex numDialing=0 numInPeers=0 numOutPeers=0 numToDial=10 | |
11:36AM INF No addresses to dial. Falling back to seeds module=pex | |
11:37AM INF Ensure peers module=pex numDialing=0 numInPeers=0 numOutPeers=0 numToDial=10 | |
11:37AM INF No addresses to dial. Falling back to seeds module=pex | |
11:37AM INF Ensure peers module=pex numDialing=0 numInPeers=0 numOutPeers=0 numToDial=10 | |
11:37AM INF No addresses to dial. Falling back to seeds module=pex | |
11:38AM INF Saving AddrBook to file book=/config/addrbook.json module=p2p size=0 | |
11:38AM INF Ensure peers module=pex numDialing=0 numInPeers=0 numOutPeers=0 numToDial=10 | |
11:38AM INF No addresses to dial. Falling back to seeds module=pex |
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
FROM ubuntu:latest | |
COPY . . | |
RUN apt update | |
RUN apt install -y curl | |
RUN curl -L https://github.com/hasura/graphql-engine/raw/stable/cli/get.sh | bash |
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
[ | |
{ | |
"id": 1, | |
"name": "Ikea", | |
"logo_url": "https://www.ikea.com/de/de/static/ikea-logo.f7d9229f806b59ec64cb.svg", | |
"article_url": "https://www.eurointegration.com.ua/news/2022/03/5/7135310/", | |
"date": "19/01/2022" | |
}, | |
{ | |
"id": 2, |
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
version: '3.6' | |
services: | |
geth: | |
image: ethereum/client-go:stable | |
restart: always | |
command: | | |
--rpc | |
--rpcaddr=0.0.0.0 | |
--rpcport=8545 |
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
#!/bin/sh | |
# To use add to `.git/hooks/` | |
# Should be named `pre-push` | |
# Make executable with `chmod +x` | |
flutter analyze | |
RESULT=$? | |
if [ $RESULT -eq 0 ]; then | |
echo success |
NewerOlder