Skip to content

Commit

Permalink
Merge branch 'main' into joel/wormchain-v0.47.12
Browse files Browse the repository at this point in the history
  • Loading branch information
joelsmith-2019 authored Sep 23, 2024
2 parents dcfb308 + 8e21c71 commit f649092
Show file tree
Hide file tree
Showing 14 changed files with 522 additions and 57 deletions.
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ The Wormhole project operates a bug bounty program to financially incentivize in

- [Immunefi-Hosted Program](https://immunefi.com/bounty/wormhole/)
- **Scopes**: Guardian and Smart Contracts
- **Rewards**: Up to $2,500,000 USDC
- **Rewards**: Up to $5,000,000 USDC
- **KYC**: Required

If you find a security issue in Wormhole, please report the issue immediately using the bug bounty program above.
Expand Down
2 changes: 1 addition & 1 deletion clients/js/src/consts/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Mainnet = {
key: getEnvVar("TERRA_MNEMONIC"),
},
Ethereum: {
rpc: `https://rpc.ankr.com/eth`,
rpc: `https://ethereum-rpc.publicnode.com`,
key: getEnvVar("ETH_KEY"),
chain_id: 1,
},
Expand Down
3 changes: 3 additions & 0 deletions cosmwasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions cosmwasm/contracts/wormchain-ibc-receiver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@ thiserror = "1.0.31"
wormhole-bindings = "0.1.0"
wormhole-sdk = { workspace = true, features = ["schemars"] }
serde_wormhole.workspace = true

[dev-dependencies]
cw-multi-test = "0.13.2"
serde-json-wasm = "0.4"
wormhole-bindings = { version = "0.1.0", features=["fake"] }
serde = { version = "1.0.137", default-features = false, features = ["derive"] }
3 changes: 3 additions & 0 deletions cosmwasm/contracts/wormchain-ibc-receiver/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ pub mod error;
pub mod ibc;
pub mod msg;
pub mod state;

#[cfg(test)]
pub mod tests;
Loading

0 comments on commit f649092

Please sign in to comment.