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(osmosis-outpost): Fix XCS contract address #2192

Merged
merged 8 commits into from
Dec 15, 2023
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ Ref: https://keepachangelog.com/en/1.0.0/

# Changelog

## Bug Fixes
- (osmosis-outpost) [#2192](https://github.com/evmos/evmos/pull/2192) Fix Osmosis XCS contract address for testnet.

## [v16.0.0-rc4] - 2023-12-14

### State Machine Breaking
Expand Down
2 changes: 1 addition & 1 deletion x/evm/keeper/precompiles.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func AvailablePrecompiles(
WEVMOSAddress = common.HexToAddress(WEVMOSContractTestnet)
osmosisChannelID = evmostransfertypes.OsmosisTestnetChannelID
strideChannelID = evmostransfertypes.StrideTestnetChannelID
xcsv1Contract = osmosisoutpost.XCSContractMainnet
xcsv1Contract = osmosisoutpost.XCSContractTestnet
}

strideOutpost, err := strideoutpost.NewPrecompile(
Expand Down