Skip to content

Commit

Permalink
update namada to v0.43.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4r45h committed Sep 18, 2024
1 parent 6470231 commit 0a3554d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions config/genesis-chain-b/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ epochs_per_year = 31_536
# The multiplier for masp epochs
masp_epoch_multiplier = 2
# Max gas for block
max_block_gas = 20000000
max_block_gas = 15_000_000
# Masp fee payment gas limit
masp_fee_payment_gas_limit = 150_000
masp_fee_payment_gas_limit = 200_000
# Gas scale
gas_scale = 10_000_000
gas_scale = 10_000
# Fee unshielding gas limit
fee_unshielding_gas_limit = 20000

Expand Down
6 changes: 3 additions & 3 deletions config/genesis/parameters.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ epochs_per_year = 31_536
# The multiplier for masp epochs
masp_epoch_multiplier = 2
# Max gas for block
max_block_gas = 20000000
max_block_gas = 15_000_000
# Masp fee payment gas limit
masp_fee_payment_gas_limit = 150_000
masp_fee_payment_gas_limit = 200_000
# Gas scale
gas_scale = 10_000_000
gas_scale = 10_000
# Fee unshielding gas limit
fee_unshielding_gas_limit = 20000

Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ x-namada: &namada-common
dockerfile: docker/Dockerfile
context: .
args:
- NAMADA_TAG=${NAMADA_TAG:-v0.41.0}
- NAMADA_TAG=${NAMADA_TAG:-v0.43.0}
- BUILD_WASM=true
image: ghcr.io/emberstake/namada-selfhost/namada:${NAMADA_TAG:-v0.41.0}
image: ghcr.io/emberstake/namada-selfhost/namada:${NAMADA_TAG:-v0.43.0}
entrypoint: ["sh", "/docker-entrypoint-scripts.d/start-node.sh"]
networks:
namada:
Expand Down Expand Up @@ -77,12 +77,12 @@ services:
- namada-chain-b_data:/root/.local/share/namada

hermes:
image: ghcr.io/emberstake/namada-selfhost/hermes:${HERMES_TAG:-v1.9.0-namada-beta14-rc}
image: ghcr.io/emberstake/namada-selfhost/hermes:${HERMES_TAG:-v1.10.0-namada-beta15-rc2}
build:
dockerfile: docker/hermes.Dockerfile
context: .
args:
- HERMES_TAG=${HERMES_TAG:-v1.9.0-namada-beta14-rc}
- HERMES_TAG=${HERMES_TAG:-v1.10.0-namada-beta15-rc2}
hostname: hermes
profiles:
- hermes
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN git checkout ${NAMADA_TAG}
RUN make build-release
RUN make build-wasm-scripts

FROM golang:1.19.0 as tendermint-builder
FROM golang:1.21.0 as tendermint-builder
WORKDIR /app

RUN git clone https://github.com/cometbft/cometbft.git
Expand Down

0 comments on commit 0a3554d

Please sign in to comment.