Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(ampd): bump ampd patch version #704

Merged
merged 5 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading