Skip to content

Commit

Permalink
Update osmosis-bindings to use the repo at osmosis-labs rather than c…
Browse files Browse the repository at this point in the history
…onfio (#1544)

Closes: #1542 

## What is the purpose of the change

Update osmosis-bindings to use the repo at osmosis-labs rather than confio 


## Brief Changelog

- Change the relevant url entries in `app/wasm/bindings/query.go` and `app/wasm/testdata/download_releases.sh`

## Testing and Verifying

This change is a trivial rework / code cleanup without any test coverage.

## Documentation and Release Note

  - Does this pull request introduce a new feature or user-facing behavior changes? (no)
  - Is a relevant changelog entry added to the `Unreleased` section in `CHANGELOG.md`? (no)
  - How is the feature or change documented? (not applicable)
  • Loading branch information
AlpinYukseloglu authored May 19, 2022
1 parent 82e58f8 commit 1877474
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/wasm/bindings/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
)

// OsmosisQuery contains osmosis custom queries.
// See https://github.com/confio/osmosis-bindings/blob/main/packages/bindings/src/query.rs
// See https://github.com/osmosis-labs/osmosis-bindings/blob/main/packages/bindings/src/query.rs
type OsmosisQuery struct {
/// Given a subdenom minted by a contract via `OsmosisMsg::MintTokens`,
/// returns the full denom as used by `BankMsg::Send`.
Expand Down
2 changes: 1 addition & 1 deletion app/wasm/testdata/download_releases.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ for contract in hackatom reflect; do
done

tag="$1"
url="https://github.com/confio/osmosis-bindings/releases/download/$tag/osmo_reflect.wasm"
url="https://github.com/osmosis-labs/osmosis-bindings/releases/download/$tag/osmo_reflect.wasm"
echo "Downloading $url ..."
wget -O "osmo_reflect.wasm" "$url"

Expand Down

0 comments on commit 1877474

Please sign in to comment.