Skip to content

Commit

Permalink
fix: bump axelar-core version to v1.0.2 (#1138)
Browse files Browse the repository at this point in the history
  • Loading branch information
ffe9f8 authored Sep 10, 2024
1 parent cfa807d commit 5cbefa1
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
16 changes: 8 additions & 8 deletions src/pages/dev/amplifier/chain-integration/integrate-a-chain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@ The Axelar Virtual Machine (AVM) and Amplifier are currently under active develo

## Get the `axelard` binary

Install the `v1.0.1 axelard` binary. You can either download the pre-built version or build it yourself from `axelar-core`.
Install the `v1.0.2 axelard` binary. You can either download the pre-built version or build it yourself from `axelar-core`.

<tabs>

<tab-item title="Download">
To use the pre-built `axelard` binary:

1. Download the pre-built [`axelard` binary](https://github.com/axelarnetwork/axelar-core/releases/tag/v1.0.1) along with the latest version of the [`WasmVM`](https://github.com/CosmWasm/wasmvm/releases/tag/v1.3.1).
- Intel Macs: [`axelard-darwin-amd64-v1.0.1`](https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.1/axelard-darwin-amd64-v1.0.1) and [`libwasmvm.dylib`](https://github.com/CosmWasm/wasmvm/releases/download/v1.3.1/libwasmvm.dylib)
- [Macs with Apple silicon](https://support.apple.com/en-us/116943): [`axelard-darwin-arm64-v1.0.1`](https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.1/axelard-darwin-arm64-v1.0.1) and [`libwasmvm.dylib`](https://github.com/CosmWasm/wasmvm/releases/download/v1.3.1/libwasmvm.dylib)
- Linux: [`axelard-linux-amd64-v1.0.1`](https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.1/axelard-linux-amd64-v1.0.1) and [`libwasmvm.x86_64.so`](https://github.com/CosmWasm/wasmvm/releases/download/v1.3.1/libwasmvm.x86_64.so)
1. Download the pre-built [`axelard` binary](https://github.com/axelarnetwork/axelar-core/releases/tag/v1.0.2) along with the latest version of the [`WasmVM`](https://github.com/CosmWasm/wasmvm/releases/tag/v1.3.1).
- Intel Macs: [`axelard-darwin-amd64-v1.0.2`](https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.2/axelard-darwin-amd64-v1.0.2) and [`libwasmvm.dylib`](https://github.com/CosmWasm/wasmvm/releases/download/v1.3.1/libwasmvm.dylib)
- [Macs with Apple silicon](https://support.apple.com/en-us/116943): [`axelard-darwin-arm64-v1.0.2`](https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.2/axelard-darwin-arm64-v1.0.2) and [`libwasmvm.dylib`](https://github.com/CosmWasm/wasmvm/releases/download/v1.3.1/libwasmvm.dylib)
- Linux: [`axelard-linux-amd64-v1.0.2`](https://github.com/axelarnetwork/axelar-core/releases/download/v1.0.2/axelard-linux-amd64-v1.0.2) and [`libwasmvm.x86_64.so`](https://github.com/CosmWasm/wasmvm/releases/download/v1.3.1/libwasmvm.x86_64.so)

1. Add the folder containing the library to `LD_LIBRARY_PATH`:

```bash
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:~/[your-path]
ln -s axelard-darwin-arm64-v1.0.1 axelard
chmod a+x axelard-darwin-arm64-v1.0.1
ln -s axelard-darwin-arm64-v1.0.2 axelard
chmod a+x axelard-darwin-arm64-v1.0.2
```

If you run into a Mac warning telling you that either the `axelard` binary or the `WasmVM` cannot be verified, you can disable it by running:
Expand All @@ -52,7 +52,7 @@ To use the pre-built `axelard` binary:
To build the `axelard` binary from source:

1. Clone the [`axelar-core` repo](https://github.com/axelarnetwork/axelar-core).
1. Checkout the `v1.0.1` release tag.
1. Checkout the `v1.0.2` release tag.
1. Run `make build`.
</tab-item>

Expand Down
4 changes: 2 additions & 2 deletions src/pages/resources/contract-addresses/mainnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import UpgradePath from '/src/upgrade-path.md'
| Variable | Value |
| --------------------- | --------- |
| `chain-id` | `axelar-dojo-1` |
| `axelar-core` version | `v0.35.5` |
| `vald` version | `v0.35.5` |
| `axelar-core` version | `v1.0.2` |
| `vald` version | `v1.0.2` |
| `tofnd` version | `v1.0.1` |

## EVM contract addresses
Expand Down
4 changes: 2 additions & 2 deletions src/pages/resources/contract-addresses/testnet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import UpgradePathTestnet from '/src/upgrade-path-testnet.md'
| Variable | Value |
| --------------------- | --------- |
| `chain-id` | `axelar-testnet-lisbon-3` |
| `axelar-core` version | `v1.0.1` |
| `vald` version | `v1.0.1` |
| `axelar-core` version | `v1.0.2` |
| `vald` version | `v1.0.2` |
| `tofnd` version | `v1.0.1` |
| amplifier contracts | see [testnet.json](https://github.com/axelarnetwork/axelar-contract-deployments/blob/main/axelar-chains-config/info/testnet.json) |

Expand Down
10 changes: 5 additions & 5 deletions src/pages/validator/setup/manual.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ Check the appropriate version for the network accordingly:

<tabs>
<tab-item title="Mainnet">
```bash
AXELARD_RELEASE=v0.35.5
```bash
AXELARD_RELEASE=v1.0.2
TOFND_RELEASE=v1.0.1
WASMVM_RELEASE=v1.3.1
```

</tab-item>
<tab-item title="Testnet">
```bash
AXELARD_RELEASE=v1.0.1
```bash
AXELARD_RELEASE=v1.0.2
TOFND_RELEASE=v1.0.1
WASMVM_RELEASE=v1.3.1
```
Expand Down Expand Up @@ -178,7 +178,7 @@ cd $HOME
</tab-item>
<tab-item title="Testnet">
```bash
axelard tendermint unsafe-reset-all
axelard tendermint unsafe-reset-all
URL=\`curl -L https://quicksync.io/axelar.json | jq -r '.[] |select(.file=="axelartestnet-lisbon-3-pruned")|.url'\`
echo $URL
cd $HOME/.axelar/
Expand Down

0 comments on commit 5cbefa1

Please sign in to comment.