Skip to content

Commit

Permalink
fix(ampd): bump ampd patch version (#704)
Browse files Browse the repository at this point in the history
  • Loading branch information
milapsheth authored Nov 19, 2024
1 parent ec3c61c commit 81c5bd9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions ampd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ uses [tofnd](https://github.com/axelarnetwork/tofnd) for signing transactions an

Below is the config file format, with explanations for each entry:

```
```yaml
tm_jsonrpc=[JSON-RPC URL of Axelar node]
tm_grpc=[gRPC URL of Axelar node]
event_buffer_cap=[max blockchain events to queue. Will error if set too low]
Expand Down Expand Up @@ -57,7 +57,7 @@ type=[handler type. Could be EvmVerifierSetVerifier | SuiVerifierSetVerifier]
Below is an example config for connecting to a local axelard node and local tofnd process, and verifying transactions
from Avalanche testnet and Sui testnet.

```
```yaml
health_check_bind_addr="0.0.0.0:3000"
tm_jsonrpc="http://localhost:26657"
tm_grpc="tcp://localhost:9090"
Expand Down
2 changes: 1 addition & 1 deletion contracts/multisig-prover/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub const START_MULTISIG_REPLY_ID: u64 = 1;

const CONTRACT_NAME: &str = env!("CARGO_PKG_NAME");
const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");
const BASE_VERSION: &str = "1.0.0";
const BASE_VERSION: &str = "1.1.0";

#[cfg_attr(not(feature = "library"), entry_point)]
pub fn instantiate(
Expand Down
2 changes: 1 addition & 1 deletion contracts/rewards/src/contract.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ mod query;

const CONTRACT_NAME: &str = env!("CARGO_PKG_NAME");
const CONTRACT_VERSION: &str = env!("CARGO_PKG_VERSION");
const BASE_VERSION: &str = "1.1.0";
const BASE_VERSION: &str = "1.2.0";

#[cfg_attr(not(feature = "library"), entry_point)]
pub fn migrate(
Expand Down

0 comments on commit 81c5bd9

Please sign in to comment.