Skip to content

Instantly share code, notes, and snippets.

View alinetskyi's full-sized avatar
🏠
Working from home

Artem Linetskiy alinetskyi

🏠
Working from home
View GitHub Profile
# 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).
# 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
@alinetskyi
alinetskyi / devnet-1-full-node-eris.toml
Last active March 9, 2023 10:49
devnet-1-full-node-eris & testnet-1-full-node-eris
# 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 ###
{
"data": {
"communityPool": [
{
"coins": [
{
"denom": "utestcore",
"amount": "265339915641.245857304685609866"
}
],
{
"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"
},
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
@alinetskyi
alinetskyi / Dockerfile-hasura-cli
Last active May 31, 2022 14:04
Dockerfile-hasura-cli
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
@alinetskyi
alinetskyi / companies.json
Last active March 5, 2022 18:16
API responses for companies
[
{
"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,
@alinetskyi
alinetskyi / docker-compose.yaml
Created September 30, 2020 12:12
Ethereum node deployment file
version: '3.6'
services:
geth:
image: ethereum/client-go:stable
restart: always
command: |
--rpc
--rpcaddr=0.0.0.0
--rpcport=8545
#!/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