diff --git a/.circleci/config.yml b/.circleci/config.yml index 46c3252d10..15e2fcc172 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -206,7 +206,7 @@ jobs: command: | IN_DOCKER=$(docker run --rm "cosmwasm/wasmd:${CIRCLE_SHA1}" /usr/bin/wasmd query wasm libwasmvm-version) echo "Runtime libwasmvm-version in docker: $IN_DOCKER" - IN_GOMOD=$(go list -m github.com/CosmWasm/wasmvm/v2 | cut -d" " -f2 | cut -d"v" -f2) + IN_GOMOD=$(go list -m github.com/ODIN-PROTOCOL/wasmvm/v2 | cut -d" " -f2 | cut -d"v" -f2) echo "wasmvm version in go.mod: $IN_GOMOD" if [[ "$IN_DOCKER" != "$IN_GOMOD" ]]; then echo "Mismatch of wasmvm versions detected" diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 376c012334..ae9de5e0bc 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,5 +1,5 @@ version: 2 -updates: +updates: - package-ecosystem: github-actions directory: "/" schedule: @@ -11,7 +11,7 @@ updates: interval: daily open-pull-requests-limit: 10 ignore: - - dependency-name: github.com/CosmWasm/wasmvm + - dependency-name: github.com/ODIN-PROTOCOL/wasmvm versions: - 0.14.0-beta2 - 0.14.0-beta3 diff --git a/.golangci.yml b/.golangci.yml index d155f54e54..ab84c664e7 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -81,7 +81,7 @@ linters-settings: - default # Default section: contains all imports that could not be matched to another section type. - prefix(cosmossdk.io) - prefix(github.com/cosmos/cosmos-sdk) - - prefix(github.com/CosmWasm/wasmd) + - prefix(github.com/ODIN-PROTOCOL/wasmd) revive: rules: - name: redefines-builtin-id diff --git a/Dockerfile b/Dockerfile index 9275a0de72..e477863196 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,10 +17,10 @@ RUN apk add git WORKDIR /code COPY . /code/ # See https://github.com/CosmWasm/wasmvm/releases -ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.2/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a -ADD https://github.com/CosmWasm/wasmvm/releases/download/v2.1.2/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a -RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep 0881c5b463e89e229b06370e9e2961aec0a5c636772d5142c68d351564464a66 -RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep 58e1f6bfa89ee390cb9abc69a5bc126029a497fe09dd399f38a82d0d86fe95ef +ADD https://github.com/ODIN-PROTOCOL/wasmvm/releases/download/v2.1.3/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a +ADD https://github.com/ODIN-PROTOCOL/wasmvm/releases/download/v2.1.3/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a +#RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep 0881c5b463e89e229b06370e9e2961aec0a5c636772d5142c68d351564464a66 +#RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep 58e1f6bfa89ee390cb9abc69a5bc126029a497fe09dd399f38a82d0d86fe95ef # force it to use static lib (from above) not standard libgo_cosmwasm.so file RUN LEDGER_ENABLED=false BUILD_TAGS=muslc LINK_STATICALLY=true make build diff --git a/Makefile b/Makefile index 90814a3c65..cd2f32484f 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ SIMAPP = ./app DOCKER := $(shell which docker) BUF_IMAGE=bufbuild/buf@sha256:3cb1f8a4b48bd5ad8f09168f10f607ddc318af202f5c057d52a45216793d85e5 #v1.4.0 DOCKER_BUF := $(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(BUF_IMAGE) -HTTPS_GIT := https://github.com/CosmWasm/wasmd.git +HTTPS_GIT := https://github.com/ODIN-PROTOCOL/wasmd.git export GO111MODULE = on @@ -59,7 +59,7 @@ ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=wasm \ -X github.com/cosmos/cosmos-sdk/version.AppName=wasmd \ -X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \ -X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \ - -X github.com/CosmWasm/wasmd/app.Bech32Prefix=wasm \ + -X github.com/ODIN-PROTOCOL/wasmd/app.Bech32Prefix=wasm \ -X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)" ifeq ($(WITH_CLEVELDB),yes) @@ -163,7 +163,7 @@ lint: format-tools format: format-tools find . -name '*.go' -type f -not -path "./vendor*" -not -path "./tests/system/vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs gofumpt -w find . -name '*.go' -type f -not -path "./vendor*" -not -path "./tests/system/vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs misspell -w - find . -name '*.go' -type f -not -path "./vendor*" -not -path "./tests/system/vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs gci write --skip-generated -s standard -s default -s "prefix(cosmossdk.io)" -s "prefix(github.com/cosmos/cosmos-sdk)" -s "prefix(github.com/CosmWasm/wasmd)" --custom-order + find . -name '*.go' -type f -not -path "./vendor*" -not -path "./tests/system/vendor*" -not -path "*.git*" -not -path "./client/lcd/statik/statik.go" | xargs gci write --skip-generated -s standard -s default -s "prefix(cosmossdk.io)" -s "prefix(github.com/cosmos/cosmos-sdk)" -s "prefix(github.com/ODIN-PROTOCOL/wasmd)" --custom-order ############################################################################### diff --git a/app/ante.go b/app/ante.go index 7a8f17e511..a20fdfaea1 100644 --- a/app/ante.go +++ b/app/ante.go @@ -13,8 +13,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/ante" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - wasmTypes "github.com/CosmWasm/wasmd/x/wasm/types" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + wasmTypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // HandlerOptions extend the SDK's AnteHandler options by requiring the IBC diff --git a/app/app.go b/app/app.go index 85cd58d8bd..4166600b90 100644 --- a/app/app.go +++ b/app/app.go @@ -131,9 +131,9 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/x/wasm" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) const appName = "WasmApp" diff --git a/app/app_test.go b/app/app_test.go index c363a847f8..9f82cb733e 100644 --- a/app/app_test.go +++ b/app/app_test.go @@ -14,7 +14,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/msgservice" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" ) var emptyWasmOpts []wasmkeeper.Option diff --git a/app/encoding.go b/app/encoding.go index 3bf0c656c0..77b4171c4a 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -9,8 +9,8 @@ import ( simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" - "github.com/CosmWasm/wasmd/app/params" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/app/params" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" ) // MakeEncodingConfig creates a new EncodingConfig with all modules registered. For testing only diff --git a/app/sim_test.go b/app/sim_test.go index e6e1ae041c..c6614fa500 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -32,7 +32,7 @@ import ( slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // SimAppChainID hardcoded chainID for simulation diff --git a/app/test_helpers.go b/app/test_helpers.go index 5a6972e726..8deb57d905 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -42,7 +42,7 @@ import ( slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" ) // SetupOptions defines arguments that are passed into `WasmApp` constructor. diff --git a/app/test_support.go b/app/test_support.go index 33bbffadc2..ab8066b4fd 100644 --- a/app/test_support.go +++ b/app/test_support.go @@ -9,7 +9,7 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" ) func (app *WasmApp) GetIBCKeeper() *ibckeeper.Keeper { diff --git a/app/upgrades.go b/app/upgrades.go index 2ffaa17b70..90814e07b5 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -18,11 +18,11 @@ import ( slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/app/upgrades" - "github.com/CosmWasm/wasmd/app/upgrades/noop" - v050 "github.com/CosmWasm/wasmd/app/upgrades/v050" - v2 "github.com/CosmWasm/wasmd/x/wasm/migrations/v2" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app/upgrades" + "github.com/ODIN-PROTOCOL/wasmd/app/upgrades/noop" + v050 "github.com/ODIN-PROTOCOL/wasmd/app/upgrades/v050" + v2 "github.com/ODIN-PROTOCOL/wasmd/x/wasm/migrations/v2" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // Upgrades list of chain upgrades diff --git a/app/upgrades/noop/upgrades.go b/app/upgrades/noop/upgrades.go index e1ac64da01..7c8d42f1bb 100644 --- a/app/upgrades/noop/upgrades.go +++ b/app/upgrades/noop/upgrades.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" - "github.com/CosmWasm/wasmd/app/upgrades" + "github.com/ODIN-PROTOCOL/wasmd/app/upgrades" ) // NewUpgrade constructor diff --git a/app/upgrades/v050/upgrades.go b/app/upgrades/v050/upgrades.go index 091cfe9be8..f243092a16 100644 --- a/app/upgrades/v050/upgrades.go +++ b/app/upgrades/v050/upgrades.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" - "github.com/CosmWasm/wasmd/app/upgrades" + "github.com/ODIN-PROTOCOL/wasmd/app/upgrades" ) // UpgradeName defines the on-chain upgrade name diff --git a/app/wasm.go b/app/wasm.go index 97b0544b06..52814a1bc7 100644 --- a/app/wasm.go +++ b/app/wasm.go @@ -1,10 +1,10 @@ package app import ( - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" ) -// Deprecated: Use BuiltInCapabilities from github.com/CosmWasm/wasmd/x/wasm/keeper +// Deprecated: Use BuiltInCapabilities from github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper func AllCapabilities() []string { return wasmkeeper.BuiltInCapabilities() } diff --git a/benchmarks/app_test.go b/benchmarks/app_test.go index a5bb6ac557..274bfe71d6 100644 --- a/benchmarks/app_test.go +++ b/benchmarks/app_test.go @@ -28,9 +28,9 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/app" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func setup(db dbm.DB, withGenesis bool, invCheckPeriod uint, opts ...wasmkeeper.Option) (*app.WasmApp, app.GenesisState) { //nolint:unparam diff --git a/benchmarks/bench_test.go b/benchmarks/bench_test.go index 49aec11da7..1891473bd7 100644 --- a/benchmarks/bench_test.go +++ b/benchmarks/bench_test.go @@ -14,7 +14,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func BenchmarkTxSending(b *testing.B) { diff --git a/cmd/wasmd/commands.go b/cmd/wasmd/commands.go index ba97b85db1..62c3a18371 100644 --- a/cmd/wasmd/commands.go +++ b/cmd/wasmd/commands.go @@ -34,11 +34,11 @@ import ( "github.com/cosmos/cosmos-sdk/x/crisis" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" - "github.com/CosmWasm/wasmd/app" - "github.com/CosmWasm/wasmd/x/wasm" - wasmcli "github.com/CosmWasm/wasmd/x/wasm/client/cli" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm" + wasmcli "github.com/ODIN-PROTOCOL/wasmd/x/wasm/client/cli" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // initCometBFTConfig helps to override default CometBFT Config values. diff --git a/cmd/wasmd/main.go b/cmd/wasmd/main.go index af4366beda..ef7f9cda97 100644 --- a/cmd/wasmd/main.go +++ b/cmd/wasmd/main.go @@ -7,7 +7,7 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/CosmWasm/wasmd/app" + "github.com/ODIN-PROTOCOL/wasmd/app" ) func main() { diff --git a/cmd/wasmd/root.go b/cmd/wasmd/root.go index 6f6022336b..11f8065f23 100644 --- a/cmd/wasmd/root.go +++ b/cmd/wasmd/root.go @@ -10,7 +10,6 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/config" - "github.com/cosmos/cosmos-sdk/crypto/keyring" "github.com/cosmos/cosmos-sdk/server" simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" @@ -20,10 +19,10 @@ import ( txmodule "github.com/cosmos/cosmos-sdk/x/auth/tx/config" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/CosmWasm/wasmd/app" - "github.com/CosmWasm/wasmd/app/params" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + "github.com/ODIN-PROTOCOL/wasmd/app/params" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // NewRootCmd creates a new root command for wasmd. It is called once in the @@ -111,7 +110,6 @@ func NewRootCmd() *cobra.Command { // add keyring to autocli opts autoCliOpts := tempApp.AutoCliOpts() initClientCtx, _ = config.ReadFromClientConfig(initClientCtx) - autoCliOpts.Keyring, _ = keyring.NewAutoCLIKeyring(initClientCtx.Keyring) autoCliOpts.ClientCtx = initClientCtx if err := autoCliOpts.EnhanceRootCommand(rootCmd); err != nil { diff --git a/cmd/wasmd/testnet.go b/cmd/wasmd/testnet.go index 60b9cc1b4f..a8a0b8b537 100644 --- a/cmd/wasmd/testnet.go +++ b/cmd/wasmd/testnet.go @@ -39,7 +39,7 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/app" + "github.com/ODIN-PROTOCOL/wasmd/app" ) var ( diff --git a/go.mod b/go.mod index 8b4cb9054d..82a86c9b79 100644 --- a/go.mod +++ b/go.mod @@ -1,66 +1,68 @@ -module github.com/CosmWasm/wasmd +module github.com/ODIN-PROTOCOL/wasmd go 1.21 require ( - github.com/CosmWasm/wasmvm/v2 v2.1.2 + github.com/ODIN-PROTOCOL/wasmvm/v2 v2.1.3 github.com/cosmos/cosmos-proto v1.0.0-beta.5 - github.com/cosmos/cosmos-sdk v0.50.9 + github.com/cosmos/cosmos-sdk v0.50.10 github.com/cosmos/gogogateway v1.2.0 // indirect github.com/cosmos/gogoproto v1.7.0 github.com/cosmos/iavl v1.2.0 - github.com/cosmos/ics23/go v0.10.0 // indirect + github.com/cosmos/ics23/go v0.11.0 // indirect github.com/dvsekhvalnov/jose2go v1.6.0 // indirect github.com/golang/protobuf v1.5.4 github.com/google/gofuzz v1.2.0 github.com/gorilla/mux v1.8.1 // indirect github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/pkg/errors v0.9.1 - github.com/prometheus/client_golang v1.20.0 + github.com/prometheus/client_golang v1.20.1 github.com/spf13/cast v1.7.0 github.com/spf13/cobra v1.8.1 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.9.0 github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d - google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect + google.golang.org/genproto v0.0.0-20240701130421-f6361c86f094 // indirect google.golang.org/grpc v1.64.1 gopkg.in/yaml.v2 v2.4.0 ) require ( cosmossdk.io/api v0.7.5 - cosmossdk.io/client/v2 v2.0.0-beta.1 + cosmossdk.io/client/v2 v2.0.0-beta.3 cosmossdk.io/collections v0.4.0 cosmossdk.io/core v0.11.1 cosmossdk.io/errors v1.0.1 cosmossdk.io/log v1.4.1 cosmossdk.io/math v1.3.0 - cosmossdk.io/store v1.1.0 + cosmossdk.io/store v1.1.1 cosmossdk.io/tools/confix v0.1.2 cosmossdk.io/x/circuit v0.1.1 cosmossdk.io/x/evidence v0.1.1 cosmossdk.io/x/feegrant v0.1.1 cosmossdk.io/x/nft v0.1.1 - cosmossdk.io/x/tx v0.13.4 + cosmossdk.io/x/tx v0.13.5 cosmossdk.io/x/upgrade v0.1.4 - github.com/cometbft/cometbft v0.38.11 + github.com/cometbft/cometbft v0.38.12 github.com/cosmos/cosmos-db v1.0.2 github.com/cosmos/ibc-go/modules/apps/callbacks v0.2.1-0.20231113120333-342c00b0f8bd github.com/cosmos/ibc-go/modules/capability v1.0.1 - github.com/cosmos/ibc-go/v8 v8.4.0 + github.com/cosmos/ibc-go/v8 v8.5.2 github.com/distribution/reference v0.5.0 github.com/rs/zerolog v1.33.0 github.com/spf13/viper v1.19.0 - google.golang.org/genproto/googleapis/api v0.0.0-20240318140521-94a12d6c2237 + google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d ) require ( - cloud.google.com/go v0.112.1 // indirect + cloud.google.com/go v0.115.0 // indirect + cloud.google.com/go/auth v0.6.0 // indirect + cloud.google.com/go/auth/oauth2adapt v0.2.2 // indirect cloud.google.com/go/compute/metadata v0.3.0 // indirect - cloud.google.com/go/iam v1.1.6 // indirect - cloud.google.com/go/storage v1.38.0 // indirect + cloud.google.com/go/iam v1.1.9 // indirect + cloud.google.com/go/storage v1.41.0 // indirect cosmossdk.io/depinject v1.0.0 // indirect - filippo.io/edwards25519 v1.0.0 // indirect + filippo.io/edwards25519 v1.1.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect github.com/DataDog/datadog-go v3.2.0+incompatible // indirect @@ -70,18 +72,19 @@ require ( github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect github.com/bits-and-blooms/bitset v1.8.0 // indirect - github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect + github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect github.com/cenkalti/backoff/v4 v4.1.3 // indirect github.com/cespare/xxhash v1.1.0 // indirect github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/chzyer/readline v1.5.1 // indirect github.com/cockroachdb/apd/v2 v2.0.2 // indirect - github.com/cockroachdb/errors v1.11.1 // indirect + github.com/cockroachdb/errors v1.11.3 // indirect + github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce // indirect github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect - github.com/cockroachdb/pebble v1.1.0 // indirect + github.com/cockroachdb/pebble v1.1.1 // indirect github.com/cockroachdb/redact v1.1.5 // indirect github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 // indirect - github.com/cometbft/cometbft-db v0.9.1 // indirect + github.com/cometbft/cometbft-db v0.11.0 // indirect github.com/cosmos/btcutil v1.0.5 // indirect github.com/cosmos/go-bip39 v1.0.0 // indirect github.com/cosmos/ledger-cosmos-go v0.13.3 // indirect @@ -120,9 +123,9 @@ require ( github.com/google/s2a-go v0.1.7 // indirect github.com/google/uuid v1.6.0 // indirect github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect - github.com/googleapis/gax-go/v2 v2.12.3 // indirect + github.com/googleapis/gax-go/v2 v2.12.5 // indirect github.com/gorilla/handlers v1.5.2 // indirect - github.com/gorilla/websocket v1.5.0 // indirect + github.com/gorilla/websocket v1.5.3 // indirect github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect github.com/gsterjov/go-libsecret v0.0.0-20161001094733-a6f4afe4910c // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect @@ -170,7 +173,7 @@ require ( github.com/prometheus/procfs v0.15.1 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect github.com/rogpeppe/go-internal v1.12.0 // indirect - github.com/rs/cors v1.8.3 // indirect + github.com/rs/cors v1.11.1 // indirect github.com/sagikazarmark/locafero v0.4.0 // indirect github.com/sagikazarmark/slog-shim v0.1.0 // indirect github.com/sasha-s/go-deadlock v0.3.1 // indirect @@ -183,7 +186,7 @@ require ( github.com/ulikunitz/xz v0.5.11 // indirect github.com/zondax/hid v0.9.2 // indirect github.com/zondax/ledger-go v0.14.3 // indirect - go.etcd.io/bbolt v1.3.8 // indirect + go.etcd.io/bbolt v1.3.10 // indirect go.opencensus.io v0.24.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect @@ -191,16 +194,16 @@ require ( go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect go.uber.org/multierr v1.11.0 // indirect - golang.org/x/crypto v0.25.0 // indirect - golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 // indirect - golang.org/x/net v0.27.0 // indirect + golang.org/x/crypto v0.26.0 // indirect + golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect + golang.org/x/net v0.28.0 // indirect golang.org/x/oauth2 v0.21.0 // indirect - golang.org/x/sync v0.7.0 // indirect - golang.org/x/sys v0.23.0 // indirect - golang.org/x/term v0.22.0 // indirect - golang.org/x/text v0.16.0 // indirect + golang.org/x/sync v0.8.0 // indirect + golang.org/x/sys v0.24.0 // indirect + golang.org/x/term v0.23.0 // indirect + golang.org/x/text v0.17.0 // indirect golang.org/x/time v0.5.0 // indirect - google.golang.org/api v0.171.0 // indirect + google.golang.org/api v0.186.0 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240709173604-40e1e62336c5 // indirect google.golang.org/protobuf v1.34.2 // indirect gopkg.in/ini.v1 v1.67.0 // indirect diff --git a/go.sum b/go.sum index 54068d14af..d6c501c2dd 100644 --- a/go.sum +++ b/go.sum @@ -30,8 +30,8 @@ cloud.google.com/go v0.100.2/go.mod h1:4Xra9TjzAeYHrl5+oeLlzbM2k3mjVhZh4UqTZ//w9 cloud.google.com/go v0.102.0/go.mod h1:oWcCzKlqJ5zgHQt9YsaeTY9KzIvjyy0ArmiBUgpQ+nc= cloud.google.com/go v0.102.1/go.mod h1:XZ77E9qnTEnrgEOvr4xzfdX5TRo7fB4T2F4O6+34hIU= cloud.google.com/go v0.104.0/go.mod h1:OO6xxXdJyvuJPcEPBLN9BJPD+jep5G1+2U5B5gkRYtA= -cloud.google.com/go v0.112.1 h1:uJSeirPke5UNZHIb4SxfZklVSiWWVqW4oXlETwZziwM= -cloud.google.com/go v0.112.1/go.mod h1:+Vbu+Y1UU+I1rjmzeMOb/8RfkKJK2Gyxi1X6jJCZLo4= +cloud.google.com/go v0.115.0 h1:CnFSK6Xo3lDYRoBKEcAtia6VSC837/ZkJuRduSFnr14= +cloud.google.com/go v0.115.0/go.mod h1:8jIM5vVgoAEoiVxQ/O4BFTfHqulPZgs/ufEzMcFMdWU= cloud.google.com/go/aiplatform v1.22.0/go.mod h1:ig5Nct50bZlzV6NvKaTwmplLLddFx0YReh9WfTO5jKw= cloud.google.com/go/aiplatform v1.24.0/go.mod h1:67UUvRBKG6GTayHKV8DBv2RtR1t93YRu5B1P3x99mYY= cloud.google.com/go/analytics v0.11.0/go.mod h1:DjEWCu41bVbYcKyvlws9Er60YE4a//bK6mnhWvQeFNI= @@ -46,6 +46,10 @@ cloud.google.com/go/asset v1.8.0/go.mod h1:mUNGKhiqIdbr8X7KNayoYvyc4HbbFO9URsjby cloud.google.com/go/assuredworkloads v1.5.0/go.mod h1:n8HOZ6pff6re5KYfBXcFvSViQjDwxFkAkmUFffJRbbY= cloud.google.com/go/assuredworkloads v1.6.0/go.mod h1:yo2YOk37Yc89Rsd5QMVECvjaMKymF9OP+QXWlKXUkXw= cloud.google.com/go/assuredworkloads v1.7.0/go.mod h1:z/736/oNmtGAyU47reJgGN+KVoYoxeLBoj4XkKYscNI= +cloud.google.com/go/auth v0.6.0 h1:5x+d6b5zdezZ7gmLWD1m/xNjnaQ2YDhmIz/HH3doy1g= +cloud.google.com/go/auth v0.6.0/go.mod h1:b4acV+jLQDyjwm4OXHYjNvRi4jvGBzHWJRtJcy+2P4g= +cloud.google.com/go/auth/oauth2adapt v0.2.2 h1:+TTV8aXpjeChS9M+aTtN/TjdQnzJvmzKFt//oWu7HX4= +cloud.google.com/go/auth/oauth2adapt v0.2.2/go.mod h1:wcYjgpZI9+Yu7LyYBg4pqSiaRkfEK3GQcpb7C/uyF1Q= cloud.google.com/go/automl v1.5.0/go.mod h1:34EjfoFGMZ5sgJ9EoLsRtdPSNZLcfflJR39VbVNS2M0= cloud.google.com/go/automl v1.6.0/go.mod h1:ugf8a6Fx+zP0D59WLhqgTDsQI9w07o64uf/Is3Nh5p8= cloud.google.com/go/bigquery v1.0.1/go.mod h1:i/xbL2UlR5RvWAURpBYZTtm/cXjCha9lbfbpx4poX+o= @@ -107,8 +111,8 @@ cloud.google.com/go/gkehub v0.10.0/go.mod h1:UIPwxI0DsrpsVoWpLB0stwKCP+WFVG9+y97 cloud.google.com/go/grafeas v0.2.0/go.mod h1:KhxgtF2hb0P191HlY5besjYm6MqTSTj3LSI+M+ByZHc= cloud.google.com/go/iam v0.3.0/go.mod h1:XzJPvDayI+9zsASAFO68Hk07u3z+f+JrT2xXNdp4bnY= cloud.google.com/go/iam v0.5.0/go.mod h1:wPU9Vt0P4UmCux7mqtRu6jcpPAb74cP1fh50J3QpkUc= -cloud.google.com/go/iam v1.1.6 h1:bEa06k05IO4f4uJonbB5iAgKTPpABy1ayxaIZV/GHVc= -cloud.google.com/go/iam v1.1.6/go.mod h1:O0zxdPeGBoFdWW3HWmBxJsk0pfvNM/p/qa82rWOGTwI= +cloud.google.com/go/iam v1.1.9 h1:oSkYLVtVme29uGYrOcKcvJRht7cHJpYD09GM9JaR0TE= +cloud.google.com/go/iam v1.1.9/go.mod h1:Nt1eDWNYH9nGQg3d/mY7U1hvfGmsaG9o/kLGoLoLXjQ= cloud.google.com/go/language v1.4.0/go.mod h1:F9dRpNFQmJbkaop6g0JhSBXCNlO90e1KWx5iDdxbWic= cloud.google.com/go/language v1.6.0/go.mod h1:6dJ8t3B+lUYfStgls25GusK04NLh3eDLQnWM3mdEbhI= cloud.google.com/go/lifesciences v0.5.0/go.mod h1:3oIKy8ycWGPUyZDR/8RNnTOYevhaMLqh5vLUXs9zvT8= @@ -169,8 +173,8 @@ cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9 cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= -cloud.google.com/go/storage v1.38.0 h1:Az68ZRGlnNTpIBbLjSMIV2BDcwwXYlRlQzis0llkpJg= -cloud.google.com/go/storage v1.38.0/go.mod h1:tlUADB0mAb9BgYls9lq+8MGkfzOXuLrnHXlpHmvFJoY= +cloud.google.com/go/storage v1.41.0 h1:RusiwatSu6lHeEXe3kglxakAmAbfV+rhtPqA6i8RBx0= +cloud.google.com/go/storage v1.41.0/go.mod h1:J1WCa/Z2FcgdEDuPUY8DxT5I+d9mFKsCepp5vR6Sq80= cloud.google.com/go/talent v1.1.0/go.mod h1:Vl4pt9jiHKvOgF9KoZo6Kob9oV4lwd/ZD5Cto54zDRw= cloud.google.com/go/talent v1.2.0/go.mod h1:MoNF9bhFQbiJ6eFD3uSsg0uBALw4n4gaCaEjBw9zo8g= cloud.google.com/go/videointelligence v1.6.0/go.mod h1:w0DIDlVRKtwPCn/C4iwZIJdvC69yInhW0cfi+p546uU= @@ -184,8 +188,8 @@ cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1V cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= cosmossdk.io/api v0.7.5 h1:eMPTReoNmGUm8DeiQL9DyM8sYDjEhWzL1+nLbI9DqtQ= cosmossdk.io/api v0.7.5/go.mod h1:IcxpYS5fMemZGqyYtErK7OqvdM0C8kdW3dq8Q/XIG38= -cosmossdk.io/client/v2 v2.0.0-beta.1 h1:XkHh1lhrLYIT9zKl7cIOXUXg2hdhtjTPBUfqERNA1/Q= -cosmossdk.io/client/v2 v2.0.0-beta.1/go.mod h1:JEUSu9moNZQ4kU3ir1DKD5eU4bllmAexrGWjmb9k8qU= +cosmossdk.io/client/v2 v2.0.0-beta.3 h1:+TTuH0DwQYsUq2JFAl3fDZzKq5gQG7nt3dAattkjFDU= +cosmossdk.io/client/v2 v2.0.0-beta.3/go.mod h1:CZcL41HpJPOOayTCO28j8weNBQprG+SRiKX39votypo= cosmossdk.io/collections v0.4.0 h1:PFmwj2W8szgpD5nOd8GWH6AbYNi1f2J6akWXJ7P5t9s= cosmossdk.io/collections v0.4.0/go.mod h1:oa5lUING2dP+gdDquow+QjlF45eL1t4TJDypgGd+tv0= cosmossdk.io/core v0.11.1 h1:h9WfBey7NAiFfIcUhDVNS503I2P2HdZLebJlUIs8LPA= @@ -198,8 +202,8 @@ cosmossdk.io/log v1.4.1 h1:wKdjfDRbDyZRuWa8M+9nuvpVYxrEOwbD/CA8hvhU8QM= cosmossdk.io/log v1.4.1/go.mod h1:k08v0Pyq+gCP6phvdI6RCGhLf/r425UT6Rk/m+o74rU= cosmossdk.io/math v1.3.0 h1:RC+jryuKeytIiictDslBP9i1fhkVm6ZDmZEoNP316zE= cosmossdk.io/math v1.3.0/go.mod h1:vnRTxewy+M7BtXBNFybkuhSH4WfedVAAnERHgVFhp3k= -cosmossdk.io/store v1.1.0 h1:LnKwgYMc9BInn9PhpTFEQVbL9UK475G2H911CGGnWHk= -cosmossdk.io/store v1.1.0/go.mod h1:oZfW/4Fc/zYqu3JmQcQdUJ3fqu5vnYTn3LZFFy8P8ng= +cosmossdk.io/store v1.1.1 h1:NA3PioJtWDVU7cHHeyvdva5J/ggyLDkyH0hGHl2804Y= +cosmossdk.io/store v1.1.1/go.mod h1:8DwVTz83/2PSI366FERGbWSH7hL6sB7HbYp8bqksNwM= cosmossdk.io/tools/confix v0.1.2 h1:2hoM1oFCNisd0ltSAAZw2i4ponARPmlhuNu3yy0VwI4= cosmossdk.io/tools/confix v0.1.2/go.mod h1:7XfcbK9sC/KNgVGxgLM0BrFbVcR/+6Dg7MFfpx7duYo= cosmossdk.io/x/circuit v0.1.1 h1:KPJCnLChWrxD4jLwUiuQaf5mFD/1m7Omyo7oooefBVQ= @@ -210,21 +214,19 @@ cosmossdk.io/x/feegrant v0.1.1 h1:EKFWOeo/pup0yF0svDisWWKAA9Zags6Zd0P3nRvVvw8= cosmossdk.io/x/feegrant v0.1.1/go.mod h1:2GjVVxX6G2fta8LWj7pC/ytHjryA6MHAJroBWHFNiEQ= cosmossdk.io/x/nft v0.1.1 h1:pslAVS8P5NkW080+LWOamInjDcq+v2GSCo+BjN9sxZ8= cosmossdk.io/x/nft v0.1.1/go.mod h1:Kac6F6y2gsKvoxU+fy8uvxRTi4BIhLOor2zgCNQwVgY= -cosmossdk.io/x/tx v0.13.4 h1:Eg0PbJgeO0gM8p5wx6xa0fKR7hIV6+8lC56UrsvSo0Y= -cosmossdk.io/x/tx v0.13.4/go.mod h1:BkFqrnGGgW50Y6cwTy+JvgAhiffbGEKW6KF9ufcDpvk= +cosmossdk.io/x/tx v0.13.5 h1:FdnU+MdmFWn1pTsbfU0OCf2u6mJ8cqc1H4OMG418MLw= +cosmossdk.io/x/tx v0.13.5/go.mod h1:V6DImnwJMTq5qFjeGWpXNiT/fjgE4HtmclRmTqRVM3w= cosmossdk.io/x/upgrade v0.1.4 h1:/BWJim24QHoXde8Bc64/2BSEB6W4eTydq0X/2f8+g38= cosmossdk.io/x/upgrade v0.1.4/go.mod h1:9v0Aj+fs97O+Ztw+tG3/tp5JSlrmT7IcFhAebQHmOPo= dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek= -filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= +filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA= +filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4= github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 h1:/vQbFIOMbk2FiG/kXiLl8BRyzTWDw7gX/Hz7Dd5eDMs= github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4/go.mod h1:hN7oaIRCjzsZ2dE+yG5k+rsdt3qcwykqK6HVGcKwsw4= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= -github.com/CosmWasm/wasmvm/v2 v2.1.2 h1:GkJ5bAsRlLHfIQVg/FY1VHwLyBwlCjAhDea0B8L+e20= -github.com/CosmWasm/wasmvm/v2 v2.1.2/go.mod h1:bMhLQL4Yp9CzJi9A83aR7VO9wockOsSlZbT4ztOl6bg= github.com/DataDog/datadog-go v3.2.0+incompatible h1:qSG2N4FghB1He/r2mFrWKCaL7dXCilEuNEeAn20fdD4= github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/zstd v1.5.5 h1:oWf5W7GtOLgp6bciQYDmhHHjdhYkALu6S/5Ni9ZgSvQ= @@ -234,6 +236,8 @@ github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migc github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= +github.com/ODIN-PROTOCOL/wasmvm/v2 v2.1.3 h1:ht9+lLx0ZtkjpjLmuZ6gyExOhOxG7Fd+66wcpUSnTjs= +github.com/ODIN-PROTOCOL/wasmvm/v2 v2.1.3/go.mod h1:ce816yVlBb2qOpCYpqdbFB/DplL9OyRlbISXDiMsq3s= github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE= github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/Shopify/sarama v1.19.0/go.mod h1:FVkBWblsNy7DGZRfXLU0O9RCGt5g3g3yEuWXgklEdEo= @@ -274,14 +278,16 @@ github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 h1:41iFGWnSlI2 github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816/go.mod h1:+zsyZBPWlz7T6j88CTgSN5bM796AkVf0kBD4zp0CCIs= github.com/bits-and-blooms/bitset v1.8.0 h1:FD+XqgOZDUxxZ8hzoBFuV9+cGWY9CslN6d5MS5JVb4c= github.com/bits-and-blooms/bitset v1.8.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8= -github.com/btcsuite/btcd/btcec/v2 v2.3.2 h1:5n0X6hX0Zk+6omWcihdYvdAlGf2DfasC0GMf7DClJ3U= -github.com/btcsuite/btcd/btcec/v2 v2.3.2/go.mod h1:zYzJ8etWJQIv1Ogk7OzpWjowwOdXY1W/17j2MW85J04= -github.com/btcsuite/btcd/btcutil v1.1.3 h1:xfbtw8lwpp0G6NwSHb+UE67ryTFHJAiNuipusjXSohQ= -github.com/btcsuite/btcd/btcutil v1.1.3/go.mod h1:UR7dsSJzJUfMmFiiLlIrMq1lS9jh9EdCV7FStZSnpi0= +github.com/btcsuite/btcd/btcec/v2 v2.3.4 h1:3EJjcN70HCu/mwqlUsGK8GcNVyLVxFDlWurTXGPFfiQ= +github.com/btcsuite/btcd/btcec/v2 v2.3.4/go.mod h1:zYzJ8etWJQIv1Ogk7OzpWjowwOdXY1W/17j2MW85J04= +github.com/btcsuite/btcd/btcutil v1.1.6 h1:zFL2+c3Lb9gEgqKNzowKUPQNb8jV7v5Oaodi/AYFd6c= +github.com/btcsuite/btcd/btcutil v1.1.6/go.mod h1:9dFymx8HpuLqBnsPELrImQeTQfKBQqzqGbbV3jK55aE= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 h1:q0rUy8C/TYNBQS1+CGKw68tLOFYSNEs0TFnxxnS9+4U= github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1/go.mod h1:7SFka0XMvUgj3hfZtydOrQY2mwhPclbT2snogU7SQQc= github.com/bufbuild/protocompile v0.6.0 h1:Uu7WiSQ6Yj9DbkdnOe7U4mNKp58y9WDMKDn28/ZlunY= github.com/bufbuild/protocompile v0.6.0/go.mod h1:YNP35qEYoYGme7QMtz5SBCoN4kL4g12jTtjuzRNdjpE= +github.com/bytecodealliance/wasmtime-go/v20 v20.0.0 h1:xO8EMdztxRALMRoru7WCIlr10co225tFFUoJ/Ygzdv4= +github.com/bytecodealliance/wasmtime-go/v20 v20.0.0/go.mod h1:Va362hmt7aqwyb2Vu73yHbmx6NkSvGmvHOzJa2xMECQ= github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= github.com/cenkalti/backoff v2.2.1+incompatible h1:tNowT99t7UNflLxfYYSlKYsBpXdEet03Pg2g16Swow4= github.com/cenkalti/backoff v2.2.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= @@ -322,21 +328,23 @@ github.com/cockroachdb/apd/v2 v2.0.2/go.mod h1:DDxRlzC2lo3/vSlmSoS7JkqbbrARPuFOG github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa/go.mod h1:zn76sxSg3SzpJ0PPJaLDCu+Bu0Lg3sKTORVIj19EIF8= github.com/cockroachdb/datadriven v1.0.3-0.20230413201302-be42291fc80f h1:otljaYPt5hWxV3MUfO5dFPFiOXg9CyG5/kCfayTqsJ4= github.com/cockroachdb/datadriven v1.0.3-0.20230413201302-be42291fc80f/go.mod h1:a9RdTaap04u637JoCzcUoIcDmvwSUtcUFtT/C3kJlTU= -github.com/cockroachdb/errors v1.11.1 h1:xSEW75zKaKCWzR3OfxXUxgrk/NtT4G1MiOv5lWZazG8= -github.com/cockroachdb/errors v1.11.1/go.mod h1:8MUxA3Gi6b25tYlFEBGLf+D8aISL+M4MIpiWMSNRfxw= +github.com/cockroachdb/errors v1.11.3 h1:5bA+k2Y6r+oz/6Z/RFlNeVCesGARKuC6YymtcDrbC/I= +github.com/cockroachdb/errors v1.11.3/go.mod h1:m4UIW4CDjx+R5cybPsNrRbreomiFqt8o1h1wUVazSd8= +github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce h1:giXvy4KSc/6g/esnpM7Geqxka4WSqI1SZc7sMJFd3y4= +github.com/cockroachdb/fifo v0.0.0-20240606204812-0bbfbd93a7ce/go.mod h1:9/y3cnZ5GKakj/H4y9r9GTjCvAFta7KLgSHPJJYc52M= github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b h1:r6VH0faHjZeQy818SGhaone5OnYfxFR/+AzdY3sf5aE= github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b/go.mod h1:Vz9DsVWQQhf3vs21MhPMZpMGSht7O/2vFW2xusFUVOs= -github.com/cockroachdb/pebble v1.1.0 h1:pcFh8CdCIt2kmEpK0OIatq67Ln9uGDYY3d5XnE0LJG4= -github.com/cockroachdb/pebble v1.1.0/go.mod h1:sEHm5NOXxyiAoKWhoFxT8xMgd/f3RA6qUqQ1BXKrh2E= +github.com/cockroachdb/pebble v1.1.1 h1:XnKU22oiCLy2Xn8vp1re67cXg4SAasg/WDt1NtcRFaw= +github.com/cockroachdb/pebble v1.1.1/go.mod h1:4exszw1r40423ZsmkG/09AFEG83I0uDgfujJdbL6kYU= github.com/cockroachdb/redact v1.1.5 h1:u1PMllDkdFfPWaNGMyLD1+so+aq3uUItthCFqzwPJ30= github.com/cockroachdb/redact v1.1.5/go.mod h1:BVNblN9mBWFyMyqK1k3AAiSxhvhfK2oOZZ2lK+dpvRg= github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06 h1:zuQyyAKVxetITBuuhv3BI9cMrmStnpT18zmgmTxunpo= github.com/cockroachdb/tokenbucket v0.0.0-20230807174530-cc333fc44b06/go.mod h1:7nc4anLGjupUW/PeY5qiNYsdNXj7zopG+eqsS7To5IQ= github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE/e/2PUdi/liOCUjSTXgM1o87ZssimdTWN964YiIeI= -github.com/cometbft/cometbft v0.38.11 h1:6bNDUB8/xq4uYonYwIfGc9OqK1ZH4NkdaMmR1LZIJqk= -github.com/cometbft/cometbft v0.38.11/go.mod h1:jHPx9vQpWzPHEAiYI/7EDKaB1NXhK6o3SArrrY8ExKc= -github.com/cometbft/cometbft-db v0.9.1 h1:MIhVX5ja5bXNHF8EYrThkG9F7r9kSfv8BX4LWaxWJ4M= -github.com/cometbft/cometbft-db v0.9.1/go.mod h1:iliyWaoV0mRwBJoizElCwwRA9Tf7jZJOURcRZF9m60U= +github.com/cometbft/cometbft v0.38.12 h1:OWsLZN2KcSSFe8bet9xCn07VwhBnavPea3VyPnNq1bg= +github.com/cometbft/cometbft v0.38.12/go.mod h1:GPHp3/pehPqgX1930HmK1BpBLZPxB75v/dZg8Viwy+o= +github.com/cometbft/cometbft-db v0.11.0 h1:M3Lscmpogx5NTbb1EGyGDaFRdsoLWrUWimFEyf7jej8= +github.com/cometbft/cometbft-db v0.11.0/go.mod h1:GDPJAC/iFHNjmZZPN8V8C1yr/eyityhi2W1hz2MGKSc= github.com/containerd/continuity v0.3.0 h1:nisirsYROK15TAMVukJOUyGJjz4BNQJBVsNvAXZJ/eg= github.com/containerd/continuity v0.3.0/go.mod h1:wJEAIwKOm/pBZuBd0JmeTvnLquTB1Ag8espWhkykbPM= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= @@ -351,8 +359,8 @@ github.com/cosmos/cosmos-db v1.0.2 h1:hwMjozuY1OlJs/uh6vddqnk9j7VamLv+0DBlbEXbAK github.com/cosmos/cosmos-db v1.0.2/go.mod h1:Z8IXcFJ9PqKK6BIsVOB3QXtkKoqUOp1vRvPT39kOXEA= github.com/cosmos/cosmos-proto v1.0.0-beta.5 h1:eNcayDLpip+zVLRLYafhzLvQlSmyab+RC5W7ZfmxJLA= github.com/cosmos/cosmos-proto v1.0.0-beta.5/go.mod h1:hQGLpiIUloJBMdQMMWb/4wRApmI9hjHH05nefC0Ojec= -github.com/cosmos/cosmos-sdk v0.50.9 h1:gt2usjz0H0qW6KwAxWw7ZJ3XU8uDwmhN+hYG3nTLeSg= -github.com/cosmos/cosmos-sdk v0.50.9/go.mod h1:TMH6wpoYBcg7Cp5BEg8fneLr+8XloNQkf2MRNF9V6JE= +github.com/cosmos/cosmos-sdk v0.50.10 h1:zXfeu/z653tWZARr/jESzAEiCUYjgJwwG4ytnYWMoDM= +github.com/cosmos/cosmos-sdk v0.50.10/go.mod h1:6Eesrx3ZE7vxBZWpK++30H+Uc7Q4ahQWCL7JKU/LEdU= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= github.com/cosmos/gogogateway v1.2.0 h1:Ae/OivNhp8DqBi/sh2A8a1D0y638GpL3tkmLQAiKxTE= @@ -366,10 +374,10 @@ github.com/cosmos/ibc-go/modules/apps/callbacks v0.2.1-0.20231113120333-342c00b0 github.com/cosmos/ibc-go/modules/apps/callbacks v0.2.1-0.20231113120333-342c00b0f8bd/go.mod h1:JWfpWVKJKiKtd53/KbRoKfxWl8FsT2GPcNezTOk0o5Q= github.com/cosmos/ibc-go/modules/capability v1.0.1 h1:ibwhrpJ3SftEEZRxCRkH0fQZ9svjthrX2+oXdZvzgGI= github.com/cosmos/ibc-go/modules/capability v1.0.1/go.mod h1:rquyOV262nGJplkumH+/LeYs04P3eV8oB7ZM4Ygqk4E= -github.com/cosmos/ibc-go/v8 v8.4.0 h1:K2PfX0AZ+1XKZytHGEMuSjQXG/MZshPb83RSTQt2+cE= -github.com/cosmos/ibc-go/v8 v8.4.0/go.mod h1:zh6x1osR0hNvEcFrC/lhGD08sMfQmr9wHVvZ/mRWMCs= -github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM= -github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0= +github.com/cosmos/ibc-go/v8 v8.5.2 h1:27s9oeD2AxLQF3e9BQsYt9doONyZ7FwZi/qkBv6Sdks= +github.com/cosmos/ibc-go/v8 v8.5.2/go.mod h1:P5hkAvq0Qbg0h18uLxDVA9q1kOJ0l36htMsskiNwXbo= +github.com/cosmos/ics23/go v0.11.0 h1:jk5skjT0TqX5e5QJbEnwXIS2yI2vnmLOgpQPeM5RtnU= +github.com/cosmos/ics23/go v0.11.0/go.mod h1:A8OjxPE67hHST4Icw94hOxxFEJMBG031xIGF/JHNIY0= github.com/cosmos/keyring v1.2.0 h1:8C1lBP9xhImmIabyXW4c3vFjjLiBdGCmfLUfeZlV1Yo= github.com/cosmos/keyring v1.2.0/go.mod h1:fc+wB5KTk9wQ9sDx0kFXB3A0MaeGHM9AwRStKOQ5vOA= github.com/cosmos/ledger-cosmos-go v0.13.3 h1:7ehuBGuyIytsXbd4MP43mLeoN2LTOEnk5nvue4rK+yM= @@ -586,8 +594,8 @@ github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXi github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.1.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/martian/v3 v3.2.1/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= -github.com/google/martian/v3 v3.3.2 h1:IqNFLAmvJOgVlpdEBiQbDc2EwKW77amAycfTuWKdfvw= -github.com/google/martian/v3 v3.3.2/go.mod h1:oBOf6HBosgwRXnUGWUB05QECsc6uvmMiJ3+6W4l/CUk= +github.com/google/martian/v3 v3.3.3 h1:DIhPTQrbPkgs2yJYdXU/eNACCG5DVQjySNRNlflZ9Fc= +github.com/google/martian/v3 v3.3.3/go.mod h1:iEPrYcgCF7jA9OtScMFQyAlZZ4YXTKEtJ1E6RWzmBA0= github.com/google/orderedcode v0.0.1 h1:UzfcAexk9Vhv8+9pNOgRu41f16lHq725vPwnSeiG/Us= github.com/google/orderedcode v0.0.1/go.mod h1:iVyU4/qPKHY5h/wSd6rZZCDcLJNxiWO6dvsYES2Sb20= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= @@ -626,8 +634,8 @@ github.com/googleapis/gax-go/v2 v2.3.0/go.mod h1:b8LNqSzNabLiUpXKkY7HAR5jr6bIT99 github.com/googleapis/gax-go/v2 v2.4.0/go.mod h1:XOTVJ59hdnfJLIP/dh8n5CGryZR2LxK9wbMD5+iXC6c= github.com/googleapis/gax-go/v2 v2.5.1/go.mod h1:h6B0KMMFNtI2ddbGJn3T3ZbwkeT6yqEF02fYlzkUCyo= github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMdcIDwU/6+DDoY= -github.com/googleapis/gax-go/v2 v2.12.3 h1:5/zPPDvw8Q1SuXjrqrZslrqT7dL/uJT2CQii/cLCKqA= -github.com/googleapis/gax-go/v2 v2.12.3/go.mod h1:AKloxT6GtNbaLm8QTNSidHUVsHYcBHwWRvkNFJUQcS4= +github.com/googleapis/gax-go/v2 v2.12.5 h1:8gw9KZK8TiVKB6q3zHY3SBzLnrGp6HQjyfYBYGmXdxA= +github.com/googleapis/gax-go/v2 v2.12.5/go.mod h1:BUDKcWo+RaKq5SC9vVYL0wLADa3VcfswbOMMRmB9H3E= github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= @@ -639,8 +647,8 @@ github.com/gorilla/mux v1.8.1 h1:TuBL49tXwgrFYWhqrNgrUNEY92u81SPhu7sTdzQEiWY= github.com/gorilla/mux v1.8.1/go.mod h1:AKf9I4AEqPTmMytcMc0KkNouC66V3BtZ4qD5fmWSiMQ= github.com/gorilla/websocket v0.0.0-20170926233335-4201258b820c/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= -github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc= -github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= +github.com/gorilla/websocket v1.5.3 h1:saDtZ6Pbx/0u+bgYQ3q96pZgCzfhKXGPqt7kZ72aNNg= +github.com/gorilla/websocket v1.5.3/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE= github.com/grpc-ecosystem/go-grpc-middleware v1.0.1-0.20190118093823-f849b5445de4/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= github.com/grpc-ecosystem/go-grpc-middleware v1.2.2/go.mod h1:EaizFBKfUKtMIF5iaDEhniwNedqGo9FuLFzppDr3uwI= github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 h1:UH//fgunKIs4JdUbpDl1VZCDaL56wXCB/5+wF6uHfaI= @@ -904,8 +912,8 @@ github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5Fsn github.com/prometheus/client_golang v1.3.0/go.mod h1:hJaj2vgQTGQmVCsAACORcieXFeDPbaTKGT+JTgUa3og= github.com/prometheus/client_golang v1.4.0/go.mod h1:e9GMxYsXl05ICDXkRhurwBS4Q3OK1iX/F2sw+iXX5zU= github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M= -github.com/prometheus/client_golang v1.20.0 h1:jBzTZ7B099Rg24tny+qngoynol8LtVYlA2bqx3vEloI= -github.com/prometheus/client_golang v1.20.0/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE= +github.com/prometheus/client_golang v1.20.1 h1:IMJXHOD6eARkQpxo8KkhgEVFlBNm+nkrFUyGlIu7Na8= +github.com/prometheus/client_golang v1.20.1/go.mod h1:PIEt8X02hGcP8JWbeHyeZ53Y/jReSnHgO035n//V5WE= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= @@ -942,8 +950,8 @@ github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/f github.com/rogpeppe/go-internal v1.12.0 h1:exVL4IDcn6na9z1rAb56Vxr+CgyK3nn3O+epU5NdKM8= github.com/rogpeppe/go-internal v1.12.0/go.mod h1:E+RYuTGaKKdloAfM02xzb0FW3Paa99yedzYV+kq4uf4= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= -github.com/rs/cors v1.8.3 h1:O+qNyWn7Z+F9M0ILBHgMVPuB1xTOucVd5gtaYyXBpRo= -github.com/rs/cors v1.8.3/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= +github.com/rs/cors v1.11.1 h1:eU3gRzXLRK57F5rKMGMZURNdIG4EoAmX8k94r9wXWHA= +github.com/rs/cors v1.11.1/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= github.com/rs/zerolog v1.33.0 h1:1cU2KZkvPxNyfgEmhHAz/1A9Bz+llsdYzklWFzgp0r8= github.com/rs/zerolog v1.33.0/go.mod h1:/7mN4D5sKwJLZQ2b/znpjC3/GQWY/xaDXUM0kKWRHss= @@ -1051,8 +1059,8 @@ github.com/zondax/hid v0.9.2/go.mod h1:l5wttcP0jwtdLjqjMMWFVEE7d1zO0jvSPA9OPZxWp github.com/zondax/ledger-go v0.14.3 h1:wEpJt2CEcBJ428md/5MgSLsXLBos98sBOyxNmCjfUCw= github.com/zondax/ledger-go v0.14.3/go.mod h1:IKKaoxupuB43g4NxeQmbLXv7T9AlQyie1UpHb342ycI= go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.etcd.io/bbolt v1.3.8 h1:xs88BrvEv273UsB79e0hcVrlUWmS0a8upikMFhSyAtA= -go.etcd.io/bbolt v1.3.8/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw= +go.etcd.io/bbolt v1.3.10 h1:+BqfJTcCzTItrop8mq/lbzL8wSGtj94UO/3U31shqG0= +go.etcd.io/bbolt v1.3.10/go.mod h1:bK3UQLPJZly7IlNmV7uVHJDxfe5aK9Ll93e/74Y9oEQ= go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738/go.mod h1:dnLIgRNXwCJa5e+c6mIZCrds/GIG4ncV9HhK5PX7jPg= go.opencensus.io v0.20.1/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= go.opencensus.io v0.20.2/go.mod h1:6WKK9ahsWS3RSO+PY9ZHZUfv2irvY6gN279GOPZjmmk= @@ -1073,8 +1081,8 @@ go.opentelemetry.io/otel v1.24.0 h1:0LAOdjNmQeSTzGBzduGe/rU4tZhMwL5rWgtp9Ku5Jfo= go.opentelemetry.io/otel v1.24.0/go.mod h1:W7b9Ozg4nkF5tWI5zsXkaKKDjdVjpD4oAt9Qi/MArHo= go.opentelemetry.io/otel/metric v1.24.0 h1:6EhoGWWK28x1fbpA4tYTOWBkPefTDQnb8WSGXlc88kI= go.opentelemetry.io/otel/metric v1.24.0/go.mod h1:VYhLe1rFfxuTXLgj4CBiyz+9WYBA8pNGJgDcSFRKBco= -go.opentelemetry.io/otel/sdk v1.22.0 h1:6coWHw9xw7EfClIC/+O31R8IY3/+EiRFHevmHafB2Gw= -go.opentelemetry.io/otel/sdk v1.22.0/go.mod h1:iu7luyVGYovrRpe2fmj3CVKouQNdTOkxtLzPvPz1DOc= +go.opentelemetry.io/otel/sdk v1.24.0 h1:YMPPDNymmQN3ZgczicBY3B6sf9n62Dlj9pWD3ucgoDw= +go.opentelemetry.io/otel/sdk v1.24.0/go.mod h1:KVrIYw6tEubO9E96HQpcmpTKDVn9gdv35HoYiQWGDFg= go.opentelemetry.io/otel/trace v1.24.0 h1:CsKnnL4dUAr/0llH9FKuc698G04IrpWV0MQA/Y1YELI= go.opentelemetry.io/otel/trace v1.24.0/go.mod h1:HPc3Xr/cOApsBI154IU0OI0HJexz+aw5uPdbs3UCjNU= go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI= @@ -1104,8 +1112,8 @@ golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.25.0 h1:ypSNr+bnYL2YhwoMt2zPxHFmbAN1KZs/njMG3hxUp30= -golang.org/x/crypto v0.25.0/go.mod h1:T+wALwcMOSE0kXgUAnPAHqTLW+XHgcELELW8VaDgm/M= +golang.org/x/crypto v0.26.0 h1:RrRspgV4mU+YwB4FYnuBoKsUapNIL5cohGAmSH3azsw= +golang.org/x/crypto v0.26.0/go.mod h1:GY7jblb9wI+FOo5y8/S2oY4zWP07AkOJ4+jxCqdqn54= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= @@ -1117,8 +1125,8 @@ golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u0 golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= golang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5/go.mod h1:4M0jN8W1tt0AVLNr8HDosyJCDCDuyL9N9+3m7wDWgKw= -golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0 h1:985EYyeCOxTpcgOTJpflJUwOeEz0CQOdPt73OzpE9F8= -golang.org/x/exp v0.0.0-20240404231335-c0f41cb1a7a0/go.mod h1:/lliqkxwWAhPjf5oSOIJup2XcqJaw8RGS6k3TGEc7GI= +golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 h1:yixxcjnhBmY0nkL253HFVIm0JsFHwrHdT3Yh6szTnfY= +golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8/go.mod h1:jj3sYF3dwk5D+ghuXyeI3r5MFf+NT2An6/9dOA95KSI= golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -1145,8 +1153,8 @@ golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.17.0 h1:zY54UmvipHiNd+pm+m0x9KhZ9hl1/7QNMyxXbc6ICqA= -golang.org/x/mod v0.17.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= +golang.org/x/mod v0.18.0 h1:5+9lSbEzPSdWkH32vYPBwEpX8KwDbM52Ud9xBUvNlb0= +golang.org/x/mod v0.18.0/go.mod h1:hTbmBsO62+eylJbnUtE2MGJUyE7QWk4xUqPFrRgJ+7c= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1206,8 +1214,8 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= -golang.org/x/net v0.27.0 h1:5K3Njcw06/l2y9vpGCSdcxWOYHOUk3dVNGDXN+FvAys= -golang.org/x/net v0.27.0/go.mod h1:dDi0PyhWNoiUOrAS8uXv/vnScO4wnHQO4mj9fn/RytE= +golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE= +golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1249,8 +1257,8 @@ golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220929204114-8fcdb60fdcc0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= -golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= +golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1348,13 +1356,13 @@ golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.23.0 h1:YfKFowiIMvtgl1UERQoTPPToxltDeZfbj4H7dVUCwmM= -golang.org/x/sys v0.23.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg= +golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= -golang.org/x/term v0.22.0 h1:BbsgPEJULsl2fV/AT3v15Mjva5yXKQDyKf+TbDz7QJk= -golang.org/x/term v0.22.0/go.mod h1:F3qCibpT5AMpCRfhfT53vVJwhLtIVHhB9XDjfFvnMI4= +golang.org/x/term v0.23.0 h1:F6D4vR+EHoL9/sWAWgAR1H2DcHr4PareCbAaCo1RpuU= +golang.org/x/term v0.23.0/go.mod h1:DgV24QBUrK6jhZXl+20l6UWznPlwAHm1Q1mGHtydmSk= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1365,8 +1373,8 @@ golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ= golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ= golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= -golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= -golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= +golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc= +golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= @@ -1435,8 +1443,8 @@ golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d h1:vU5i/LfpvrRCpgM/VPfJLg5KjxD3E+hfT1SH+d9zLwg= -golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d/go.mod h1:aiJjzUbINMkxbQROHiO6hDPo2LHcIPhhQsa9DLh0yGk= +golang.org/x/tools v0.22.0 h1:gqSGLZqv+AI9lIQzniJ0nZDRG5GBPsSi+DRNHWNz6yA= +golang.org/x/tools v0.22.0/go.mod h1:aCwcsjqvq7Yqt6TNyX7QMU2enbQ/Gt0bo6krSeEri+c= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1496,8 +1504,8 @@ google.golang.org/api v0.96.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ google.golang.org/api v0.97.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= google.golang.org/api v0.98.0/go.mod h1:w7wJQLTM+wvQpNf5JyEcBoxK0RH7EDrh/L4qfsuJ13s= google.golang.org/api v0.100.0/go.mod h1:ZE3Z2+ZOr87Rx7dqFsdRQkRBk36kDtp/h+QpHbB7a70= -google.golang.org/api v0.171.0 h1:w174hnBPqut76FzW5Qaupt7zY8Kql6fiVjgys4f58sU= -google.golang.org/api v0.171.0/go.mod h1:Hnq5AHm4OTMt2BUVjael2CWZFD6vksJdWCWiUAmjC9o= +google.golang.org/api v0.186.0 h1:n2OPp+PPXX0Axh4GuSsL5QL8xQCTb2oDwyzPnQvqUug= +google.golang.org/api v0.186.0/go.mod h1:hvRbBmgoje49RV3xqVXrmP6w93n6ehGgIVPYrGtBFFc= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= @@ -1612,10 +1620,10 @@ google.golang.org/genproto v0.0.0-20221010155953-15ba04fc1c0e/go.mod h1:3526vdqw google.golang.org/genproto v0.0.0-20221014173430-6e2ab493f96b/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= google.golang.org/genproto v0.0.0-20221014213838-99cd37c6964a/go.mod h1:1vXfmgAz9N9Jx0QA82PqRVauvCz1SGSz739p0f183jM= google.golang.org/genproto v0.0.0-20221025140454-527a21cfbd71/go.mod h1:9qHF0xnpdSfF6knlcsnpzUu5y+rpwgbvsyGAZPBMg4s= -google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de h1:F6qOa9AZTYJXOUEr4jDysRDLrm4PHePlge4v4TGAlxY= -google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de/go.mod h1:VUhTRKeHn9wwcdrk73nvdC9gF178Tzhmt/qyaFcPLSo= -google.golang.org/genproto/googleapis/api v0.0.0-20240318140521-94a12d6c2237 h1:RFiFrvy37/mpSpdySBDrUdipW/dHwsRwh3J3+A9VgT4= -google.golang.org/genproto/googleapis/api v0.0.0-20240318140521-94a12d6c2237/go.mod h1:Z5Iiy3jtmioajWHDGFk7CeugTyHtPvMHA4UTmUkyalE= +google.golang.org/genproto v0.0.0-20240701130421-f6361c86f094 h1:6whtk83KtD3FkGrVb2hFXuQ+ZMbCNdakARIn/aHMmG8= +google.golang.org/genproto v0.0.0-20240701130421-f6361c86f094/go.mod h1:Zs4wYw8z1zr6RNF4cwYb31mvN/EGaKAdQjNCF3DW6K4= +google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d h1:Aqf0fiIdUQEj0Gn9mKFFXoQfTTEaNopWpfVyYADxiSg= +google.golang.org/genproto/googleapis/api v0.0.0-20240624140628-dc46fd24d27d/go.mod h1:Od4k8V1LQSizPRUK4OzZ7TBE/20k+jPczUDAEyvn69Y= google.golang.org/genproto/googleapis/rpc v0.0.0-20240709173604-40e1e62336c5 h1:SbSDUWW1PAO24TNpLdeheoYPd7kllICcLU52x6eD4kQ= google.golang.org/genproto/googleapis/rpc v0.0.0-20240709173604-40e1e62336c5/go.mod h1:Ue6ibwXGpU+dqIcODieyLOcgj7z8+IcskoNIgZxtrFY= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= diff --git a/tests/e2e/gov_test.go b/tests/e2e/gov_test.go index a0abd64edf..25c3da5e50 100644 --- a/tests/e2e/gov_test.go +++ b/tests/e2e/gov_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -15,9 +15,9 @@ import ( distributiontypes "github.com/cosmos/cosmos-sdk/x/distribution/types" v1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" - "github.com/CosmWasm/wasmd/app" - "github.com/CosmWasm/wasmd/tests/e2e" - "github.com/CosmWasm/wasmd/x/wasm/ibctesting" + "github.com/ODIN-PROTOCOL/wasmd/app" + "github.com/ODIN-PROTOCOL/wasmd/tests/e2e" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" ) func TestGovVoteByContract(t *testing.T) { diff --git a/tests/e2e/grants_test.go b/tests/e2e/grants_test.go index 203e23f0d3..4af916f642 100644 --- a/tests/e2e/grants_test.go +++ b/tests/e2e/grants_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -19,9 +19,9 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/x/authz" - "github.com/CosmWasm/wasmd/tests/e2e" - "github.com/CosmWasm/wasmd/x/wasm/ibctesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/tests/e2e" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestGrants(t *testing.T) { diff --git a/tests/e2e/group_test.go b/tests/e2e/group_test.go index 49ab9638bb..0ec2ac529d 100644 --- a/tests/e2e/group_test.go +++ b/tests/e2e/group_test.go @@ -15,9 +15,9 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/cosmos-sdk/x/group" - "github.com/CosmWasm/wasmd/tests/e2e" - "github.com/CosmWasm/wasmd/x/wasm/ibctesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/tests/e2e" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestGroupWithContract(t *testing.T) { diff --git a/tests/e2e/ibc_callbacks_test.go b/tests/e2e/ibc_callbacks_test.go index 03d438c08d..5c2abd411e 100644 --- a/tests/e2e/ibc_callbacks_test.go +++ b/tests/e2e/ibc_callbacks_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" ibcfee "github.com/cosmos/ibc-go/v8/modules/apps/29-fee/types" ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" @@ -18,10 +18,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/app" - "github.com/CosmWasm/wasmd/tests/e2e" - wasmibctesting "github.com/CosmWasm/wasmd/x/wasm/ibctesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + "github.com/ODIN-PROTOCOL/wasmd/tests/e2e" + wasmibctesting "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestIBCCallbacks(t *testing.T) { diff --git a/tests/e2e/ibc_fees_test.go b/tests/e2e/ibc_fees_test.go index 5c29bec5ca..48292f46ae 100644 --- a/tests/e2e/ibc_fees_test.go +++ b/tests/e2e/ibc_fees_test.go @@ -20,9 +20,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/address" - "github.com/CosmWasm/wasmd/app" - wasmibctesting "github.com/CosmWasm/wasmd/x/wasm/ibctesting" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + wasmibctesting "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestIBCFeesTransfer(t *testing.T) { diff --git a/tests/e2e/ica_test.go b/tests/e2e/ica_test.go index 489da9a4ed..c7ddb31eb1 100644 --- a/tests/e2e/ica_test.go +++ b/tests/e2e/ica_test.go @@ -22,8 +22,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/address" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmWasm/wasmd/app" - wasmibctesting "github.com/CosmWasm/wasmd/x/wasm/ibctesting" + "github.com/ODIN-PROTOCOL/wasmd/app" + wasmibctesting "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" ) func TestICA(t *testing.T) { diff --git a/tests/e2e/reflect_helper.go b/tests/e2e/reflect_helper.go index f857c8dad0..f8b0b6f220 100644 --- a/tests/e2e/reflect_helper.go +++ b/tests/e2e/reflect_helper.go @@ -6,16 +6,16 @@ import ( "fmt" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/gogoproto/proto" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/ibctesting" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // InstantiateStargateReflectContract stores and instantiates the reflect contract shipped with CosmWasm 1.5.3. diff --git a/tests/system/upgrade_test.go b/tests/system/upgrade_test.go index 9196862756..5a8b95e7f4 100644 --- a/tests/system/upgrade_test.go +++ b/tests/system/upgrade_test.go @@ -117,7 +117,7 @@ func FetchExecutable(t *testing.T, version string) string { t.Logf("+++ version not in cache, downloading from github") // then download from GH releases: only works with Linux currently as we are not publishing OSX binaries - const releaseUrl = "https://github.com/CosmWasm/wasmd/releases/download/%s/wasmd-%s-linux-amd64.tar.gz" + const releaseUrl = "https://github.com/ODIN-PROTOCOL/wasmd/releases/download/%s/wasmd-%s-linux-amd64.tar.gz" destDir := t.TempDir() rsp, err := http.Get(fmt.Sprintf(releaseUrl, version, version)) require.NoError(t, err) diff --git a/x/wasm/alias.go b/x/wasm/alias.go index f53463b993..e66828d2d7 100644 --- a/x/wasm/alias.go +++ b/x/wasm/alias.go @@ -1,12 +1,12 @@ // autogenerated code using github.com/rigelrozanski/multitool // aliases generated for the following subdirectories: -// ALIASGEN: github.com/Cosmwasm/wasmd/x/wasm/types -// ALIASGEN: github.com/CosmWasm/wasmd/x/wasm/keeper +// ALIASGEN: github.com/ODIN-PROTOCOL/wasmd/x/wasm/types +// ALIASGEN: github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper package wasm import ( - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) const ( diff --git a/x/wasm/client/cli/gov_tx.go b/x/wasm/client/cli/gov_tx.go index d5806185b9..aab6125ba0 100644 --- a/x/wasm/client/cli/gov_tx.go +++ b/x/wasm/client/cli/gov_tx.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" "github.com/distribution/reference" "github.com/pkg/errors" "github.com/spf13/cobra" @@ -23,8 +23,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/gov/client/cli" v1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" - "github.com/CosmWasm/wasmd/x/wasm/ioutils" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ioutils" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // DefaultGovAuthority is set to the gov module address. @@ -130,7 +130,7 @@ func parseVerificationFlags(gzippedWasm []byte, flags *flag.FlagSet) (string, st } // wasm is gzipped in parseStoreCodeArgs // checksum generation will be decoupled here - // reference https://github.com/CosmWasm/wasmvm/issues/359 + // reference https://github.com/ODIN-PROTOCOL/wasmvm/issues/359 raw, err := ioutils.Uncompress(gzippedWasm, int64(types.MaxWasmSize)) if err != nil { return "", "", nil, fmt.Errorf("invalid zip: %w", err) diff --git a/x/wasm/client/cli/gov_tx_test.go b/x/wasm/client/cli/gov_tx_test.go index d6dea668ef..49665639b3 100644 --- a/x/wasm/client/cli/gov_tx_test.go +++ b/x/wasm/client/cli/gov_tx_test.go @@ -8,8 +8,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestParseAccessConfigUpdates(t *testing.T) { @@ -100,7 +100,7 @@ func TestParseAccessConfigUpdates(t *testing.T) { } func TestParseCodeInfoFlags(t *testing.T) { - correctSource := "https://github.com/CosmWasm/wasmd/blob/main/x/wasm/keeper/testdata/hackatom.wasm" + correctSource := "https://github.com/ODIN-PROTOCOL/wasmd/blob/main/x/wasm/keeper/testdata/hackatom.wasm" correctBuilderRef := "cosmwasm/workspace-optimizer:0.12.9" wasmBin, err := os.ReadFile("../../keeper/testdata/hackatom.wasm.gzip") diff --git a/x/wasm/client/cli/new_tx.go b/x/wasm/client/cli/new_tx.go index 5d54602aa3..57ec06d798 100644 --- a/x/wasm/client/cli/new_tx.go +++ b/x/wasm/client/cli/new_tx.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // MigrateContractCmd will migrate a contract to a new code version diff --git a/x/wasm/client/cli/query.go b/x/wasm/client/cli/query.go index 89f6790327..78be17ae69 100644 --- a/x/wasm/client/cli/query.go +++ b/x/wasm/client/cli/query.go @@ -10,7 +10,7 @@ import ( "os" "strconv" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" "github.com/spf13/cobra" flag "github.com/spf13/pflag" @@ -18,7 +18,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func GetQueryCmd() *cobra.Command { diff --git a/x/wasm/client/cli/tx.go b/x/wasm/client/cli/tx.go index 93be69c260..4781e3dc30 100644 --- a/x/wasm/client/cli/tx.go +++ b/x/wasm/client/cli/tx.go @@ -20,8 +20,8 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/cosmos/cosmos-sdk/x/authz" - "github.com/CosmWasm/wasmd/x/wasm/ioutils" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ioutils" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) const ( @@ -202,7 +202,7 @@ func InstantiateContractCmd() *cobra.Command { Each contract instance has a unique address assigned. Example: $ %s tx wasm instantiate 1 '{"foo":"bar"}' --admin="$(%s keys show mykey -a)" \ - --from mykey --amount="100ustake" --label "local0.1.0" + --from mykey --amount="100ustake" --label "local0.1.0" `, version.AppName, version.AppName), Aliases: []string{"start", "init", "inst", "i"}, Args: cobra.ExactArgs(2), @@ -236,13 +236,13 @@ func InstantiateContract2Cmd() *cobra.Command { "--fix-msg [bool,optional]", Short: "Instantiate a wasm contract with predictable address", Long: fmt.Sprintf(`Creates a new instance of an uploaded wasm code with the given 'constructor' message. -Each contract instance has a unique address assigned. They are assigned automatically but in order to have predictable addresses +Each contract instance has a unique address assigned. They are assigned automatically but in order to have predictable addresses for special use cases, the given 'salt' argument and '--fix-msg' parameters can be used to generate a custom address. Predictable address example (also see '%s query wasm build-address -h'): $ %s tx wasm instantiate2 1 '{"foo":"bar"}' $(echo -n "testing" | xxd -ps) --admin="$(%s keys show mykey -a)" \ --from mykey --amount="100ustake" --label "local0.1.0" \ - --fix-msg + --fix-msg `, version.AppName, version.AppName, version.AppName), Aliases: []string{"start", "init", "inst", "i"}, Args: cobra.ExactArgs(3), diff --git a/x/wasm/client/cli/tx_test.go b/x/wasm/client/cli/tx_test.go index 72e3967ab6..42c54c4604 100644 --- a/x/wasm/client/cli/tx_test.go +++ b/x/wasm/client/cli/tx_test.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/ioutils" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ioutils" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestParseVerificationFlags(t *testing.T) { diff --git a/x/wasm/common_test.go b/x/wasm/common_test.go index aa507ee429..47e30a7724 100644 --- a/x/wasm/common_test.go +++ b/x/wasm/common_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) const firstCodeID = 1 diff --git a/x/wasm/genesis_test.go b/x/wasm/genesis_test.go index 73503c8c95..b40d17fc92 100644 --- a/x/wasm/genesis_test.go +++ b/x/wasm/genesis_test.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestInitGenesis(t *testing.T) { diff --git a/x/wasm/ibc.go b/x/wasm/ibc.go index b0311f5227..b87e592bdd 100644 --- a/x/wasm/ibc.go +++ b/x/wasm/ibc.go @@ -3,7 +3,7 @@ package wasm import ( "math" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" @@ -15,8 +15,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // DefaultMaxIBCCallbackGas is the default value of maximum gas that an IBC callback can use. diff --git a/x/wasm/ibc_integration_test.go b/x/wasm/ibc_integration_test.go index 7cb04bc174..bbded176cc 100644 --- a/x/wasm/ibc_integration_test.go +++ b/x/wasm/ibc_integration_test.go @@ -6,8 +6,8 @@ import ( "fmt" "testing" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ibctesting "github.com/cosmos/ibc-go/v8/testing" @@ -16,11 +16,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/app" - wasmibctesting "github.com/CosmWasm/wasmd/x/wasm/ibctesting" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + wasmibctesting "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestOnChanOpenInitVersion(t *testing.T) { diff --git a/x/wasm/ibc_reflect_test.go b/x/wasm/ibc_reflect_test.go index c73155da9e..5c78e653cc 100644 --- a/x/wasm/ibc_reflect_test.go +++ b/x/wasm/ibc_reflect_test.go @@ -3,14 +3,14 @@ package wasm_test import ( "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ibctesting "github.com/cosmos/ibc-go/v8/testing" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - wasmibctesting "github.com/CosmWasm/wasmd/x/wasm/ibctesting" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" + wasmibctesting "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" ) func TestIBCReflectContract(t *testing.T) { diff --git a/x/wasm/ibc_test.go b/x/wasm/ibc_test.go index e6e0fb48c7..a7336fcf42 100644 --- a/x/wasm/ibc_test.go +++ b/x/wasm/ibc_test.go @@ -3,7 +3,7 @@ package wasm import ( "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" abci "github.com/cometbft/cometbft/abci/types" "github.com/cometbft/cometbft/libs/rand" clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck @@ -15,9 +15,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/address" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestOnRecvPacket(t *testing.T) { diff --git a/x/wasm/ibctesting/chain.go b/x/wasm/ibctesting/chain.go index 1f9aee077b..aae4707b12 100644 --- a/x/wasm/ibctesting/chain.go +++ b/x/wasm/ibctesting/chain.go @@ -45,8 +45,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/staking/testutil" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/app" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/app" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" ) var MaxAccounts = 10 diff --git a/x/wasm/ibctesting/coordinator.go b/x/wasm/ibctesting/coordinator.go index de91edfcd1..572938d125 100644 --- a/x/wasm/ibctesting/coordinator.go +++ b/x/wasm/ibctesting/coordinator.go @@ -10,7 +10,7 @@ import ( ibctesting "github.com/cosmos/ibc-go/v8/testing" "github.com/stretchr/testify/require" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" ) var ( diff --git a/x/wasm/ibctesting/wasm.go b/x/wasm/ibctesting/wasm.go index 48343926da..bc6140db0c 100644 --- a/x/wasm/ibctesting/wasm.go +++ b/x/wasm/ibctesting/wasm.go @@ -17,7 +17,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var wasmIdent = []byte("\x00\x61\x73\x6D") diff --git a/x/wasm/keeper/addresses.go b/x/wasm/keeper/addresses.go index 245377f173..3490803f51 100644 --- a/x/wasm/keeper/addresses.go +++ b/x/wasm/keeper/addresses.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/address" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // AddressGenerator abstract address generator to be used for a single contract address diff --git a/x/wasm/keeper/ante.go b/x/wasm/keeper/ante.go index 96bf474caf..aed7f26d2b 100644 --- a/x/wasm/keeper/ante.go +++ b/x/wasm/keeper/ante.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // CountTXDecorator ante handler to count the tx position in a block. diff --git a/x/wasm/keeper/ante_test.go b/x/wasm/keeper/ante_test.go index 5334964615..758d09f80b 100644 --- a/x/wasm/keeper/ante_test.go +++ b/x/wasm/keeper/ante_test.go @@ -17,9 +17,9 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestCountTxDecorator(t *testing.T) { diff --git a/x/wasm/keeper/api.go b/x/wasm/keeper/api.go index c25a63860c..d395eb5586 100644 --- a/x/wasm/keeper/api.go +++ b/x/wasm/keeper/api.go @@ -3,12 +3,12 @@ package keeper import ( "errors" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) const ( diff --git a/x/wasm/keeper/authz_policy.go b/x/wasm/keeper/authz_policy.go index 74c029e969..14cd993cd7 100644 --- a/x/wasm/keeper/authz_policy.go +++ b/x/wasm/keeper/authz_policy.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var _ types.AuthorizationPolicy = DefaultAuthorizationPolicy{} diff --git a/x/wasm/keeper/authz_policy_test.go b/x/wasm/keeper/authz_policy_test.go index 4d918e512a..6ae6736fd7 100644 --- a/x/wasm/keeper/authz_policy_test.go +++ b/x/wasm/keeper/authz_policy_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestDefaultAuthzPolicyCanCreateCode(t *testing.T) { diff --git a/x/wasm/keeper/bench_test.go b/x/wasm/keeper/bench_test.go index 19bb7de44d..0b3762c4b2 100644 --- a/x/wasm/keeper/bench_test.go +++ b/x/wasm/keeper/bench_test.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // BenchmarkVerification benchmarks secp256k1 verification which is 1000 gas based on cpu time. diff --git a/x/wasm/keeper/contract_keeper.go b/x/wasm/keeper/contract_keeper.go index eceef1eacf..6883789edb 100644 --- a/x/wasm/keeper/contract_keeper.go +++ b/x/wasm/keeper/contract_keeper.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var _ types.ContractOpsKeeper = PermissionedKeeper{} diff --git a/x/wasm/keeper/contract_keeper_test.go b/x/wasm/keeper/contract_keeper_test.go index ee868d14dd..d5c936f1c8 100644 --- a/x/wasm/keeper/contract_keeper_test.go +++ b/x/wasm/keeper/contract_keeper_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -15,9 +15,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestInstantiate2(t *testing.T) { diff --git a/x/wasm/keeper/events.go b/x/wasm/keeper/events.go index 5cfb075b2e..c91307c31a 100644 --- a/x/wasm/keeper/events.go +++ b/x/wasm/keeper/events.go @@ -4,13 +4,13 @@ import ( "fmt" "strings" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // newWasmModuleEvent creates with wasm module event for interacting with the given contract. Adds custom attributes diff --git a/x/wasm/keeper/events_test.go b/x/wasm/keeper/events_test.go index 46f6d46bf6..4a78fc7120 100644 --- a/x/wasm/keeper/events_test.go +++ b/x/wasm/keeper/events_test.go @@ -4,12 +4,12 @@ import ( "context" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestHasWasmModuleEvent(t *testing.T) { diff --git a/x/wasm/keeper/genesis.go b/x/wasm/keeper/genesis.go index bfee46927e..2e6f742662 100644 --- a/x/wasm/keeper/genesis.go +++ b/x/wasm/keeper/genesis.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // ValidatorSetSource is a subset of the staking keeper diff --git a/x/wasm/keeper/genesis_test.go b/x/wasm/keeper/genesis_test.go index f16b151a4b..3cc9ae9726 100644 --- a/x/wasm/keeper/genesis_test.go +++ b/x/wasm/keeper/genesis_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" abci "github.com/cometbft/cometbft/abci/types" cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" dbm "github.com/cosmos/cosmos-db" @@ -32,7 +32,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestGenesisExportImport(t *testing.T) { diff --git a/x/wasm/keeper/handler_plugin.go b/x/wasm/keeper/handler_plugin.go index 34afc64ddf..c92bd0bc25 100644 --- a/x/wasm/keeper/handler_plugin.go +++ b/x/wasm/keeper/handler_plugin.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" host "github.com/cosmos/ibc-go/v8/modules/core/24-host" @@ -16,7 +16,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // msgEncoder is an extension point to customize encodings diff --git a/x/wasm/keeper/handler_plugin_encoders.go b/x/wasm/keeper/handler_plugin_encoders.go index b704b952f0..73a193b3aa 100644 --- a/x/wasm/keeper/handler_plugin_encoders.go +++ b/x/wasm/keeper/handler_plugin_encoders.go @@ -4,7 +4,7 @@ import ( "encoding/json" "fmt" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" @@ -20,7 +20,7 @@ import ( v1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) type ( diff --git a/x/wasm/keeper/handler_plugin_encoders_test.go b/x/wasm/keeper/handler_plugin_encoders_test.go index f5536a3355..9a872ebe6d 100644 --- a/x/wasm/keeper/handler_plugin_encoders_test.go +++ b/x/wasm/keeper/handler_plugin_encoders_test.go @@ -3,7 +3,7 @@ package keeper import ( "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/cosmos/gogoproto/proto" ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck @@ -20,8 +20,8 @@ import ( govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestEncoding(t *testing.T) { diff --git a/x/wasm/keeper/handler_plugin_test.go b/x/wasm/keeper/handler_plugin_test.go index ca0a234e93..070903dfab 100644 --- a/x/wasm/keeper/handler_plugin_test.go +++ b/x/wasm/keeper/handler_plugin_test.go @@ -4,8 +4,8 @@ import ( "encoding/json" "testing" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/cosmos/gogoproto/proto" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck @@ -24,8 +24,8 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestMessageHandlerChainDispatch(t *testing.T) { diff --git a/x/wasm/keeper/ibc.go b/x/wasm/keeper/ibc.go index b0e1d05e1f..05ff228b1e 100644 --- a/x/wasm/keeper/ibc.go +++ b/x/wasm/keeper/ibc.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // bindIbcPort will reserve the port. diff --git a/x/wasm/keeper/keeper.go b/x/wasm/keeper/keeper.go index 89318b8e1f..49a0c48766 100644 --- a/x/wasm/keeper/keeper.go +++ b/x/wasm/keeper/keeper.go @@ -12,8 +12,8 @@ import ( "strings" "time" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" "cosmossdk.io/collections" @@ -31,8 +31,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" vestingexported "github.com/cosmos/cosmos-sdk/x/auth/vesting/exported" - "github.com/CosmWasm/wasmd/x/wasm/ioutils" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ioutils" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // contractMemoryLimit is the memory limit of each contract execution (in MiB) diff --git a/x/wasm/keeper/keeper_cgo.go b/x/wasm/keeper/keeper_cgo.go index 06f95cfaa7..d04599fbf6 100644 --- a/x/wasm/keeper/keeper_cgo.go +++ b/x/wasm/keeper/keeper_cgo.go @@ -5,14 +5,14 @@ package keeper import ( "path/filepath" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" "cosmossdk.io/collections" corestoretypes "cosmossdk.io/core/store" "github.com/cosmos/cosmos-sdk/codec" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // NewKeeper creates a new contract Keeper instance diff --git a/x/wasm/keeper/keeper_no_cgo.go b/x/wasm/keeper/keeper_no_cgo.go index 261b2bad2a..0ae38429e4 100644 --- a/x/wasm/keeper/keeper_no_cgo.go +++ b/x/wasm/keeper/keeper_no_cgo.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // NewKeeper creates a new contract Keeper instance diff --git a/x/wasm/keeper/keeper_test.go b/x/wasm/keeper/keeper_test.go index a8f069bf77..cae7612e1f 100644 --- a/x/wasm/keeper/keeper_test.go +++ b/x/wasm/keeper/keeper_test.go @@ -11,8 +11,8 @@ import ( "testing" "time" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" abci "github.com/cometbft/cometbft/abci/types" "github.com/cometbft/cometbft/libs/rand" tmproto "github.com/cometbft/cometbft/proto/tendermint/types" @@ -35,9 +35,9 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" distributiontypes "github.com/cosmos/cosmos-sdk/x/distribution/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) //go:embed testdata/hackatom.wasm @@ -422,7 +422,7 @@ func TestInstantiate(t *testing.T) { gasAfter := ctx.GasMeter().GasConsumed() if types.EnableGasVerification { - require.Equal(t, uint64(0x1bc8f), gasAfter-gasBefore) + require.Equal(t, uint64(0x1bca5), gasAfter-gasBefore) } // ensure it is stored properly @@ -825,7 +825,7 @@ func TestInstantiateWithContractFactoryChildQueriesParent(t *testing.T) { // and the child contracts queries the senders ContractInfo on instantiation // then the factory contract's ContractInfo should be returned to the child contract // - // see also: https://github.com/CosmWasm/wasmd/issues/896 + // see also: https://github.com/ODIN-PROTOCOL/wasmd/issues/896 ctx, keepers := CreateTestInput(t, false, AvailableCapabilities) keeper := keepers.WasmKeeper diff --git a/x/wasm/keeper/metrics.go b/x/wasm/keeper/metrics.go index a2b26a1f7d..66732fc50a 100644 --- a/x/wasm/keeper/metrics.go +++ b/x/wasm/keeper/metrics.go @@ -1,7 +1,7 @@ package keeper import ( - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/prometheus/client_golang/prometheus" ) diff --git a/x/wasm/keeper/migrations.go b/x/wasm/keeper/migrations.go index 5188c5bb2a..2b99f7ef39 100644 --- a/x/wasm/keeper/migrations.go +++ b/x/wasm/keeper/migrations.go @@ -3,10 +3,10 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/exported" - v1 "github.com/CosmWasm/wasmd/x/wasm/migrations/v1" - v2 "github.com/CosmWasm/wasmd/x/wasm/migrations/v2" - v3 "github.com/CosmWasm/wasmd/x/wasm/migrations/v3" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/exported" + v1 "github.com/ODIN-PROTOCOL/wasmd/x/wasm/migrations/v1" + v2 "github.com/ODIN-PROTOCOL/wasmd/x/wasm/migrations/v2" + v3 "github.com/ODIN-PROTOCOL/wasmd/x/wasm/migrations/v3" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/wasm/keeper/migrations_integration_test.go b/x/wasm/keeper/migrations_integration_test.go index 0962a79977..9da7f0882c 100644 --- a/x/wasm/keeper/migrations_integration_test.go +++ b/x/wasm/keeper/migrations_integration_test.go @@ -13,9 +13,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/address" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/CosmWasm/wasmd/app" - v2 "github.com/CosmWasm/wasmd/x/wasm/migrations/v2" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + v2 "github.com/ODIN-PROTOCOL/wasmd/x/wasm/migrations/v2" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestModuleMigrations(t *testing.T) { @@ -40,7 +40,7 @@ func TestModuleMigrations(t *testing.T) { } // upgrade code shipped with v0.40 - // https://github.com/CosmWasm/wasmd/blob/v0.40.0/app/upgrades.go#L66 + // https://github.com/ODIN-PROTOCOL/wasmd/blob/v0.40.0/app/upgrades.go#L66 sp, _ := wasmApp.ParamsKeeper.GetSubspace(types.ModuleName) keyTable := v2.ParamKeyTable() if !sp.HasKeyTable() { @@ -63,7 +63,7 @@ func TestModuleMigrations(t *testing.T) { } // upgrade code shipped with v0.40 - // https://github.com/CosmWasm/wasmd/blob/v0.40.0/app/upgrades.go#L66 + // https://github.com/ODIN-PROTOCOL/wasmd/blob/v0.40.0/app/upgrades.go#L66 sp, _ := wasmApp.ParamsKeeper.GetSubspace(types.ModuleName) keyTable := v2.ParamKeyTable() if !sp.HasKeyTable() { diff --git a/x/wasm/keeper/msg_dispatcher.go b/x/wasm/keeper/msg_dispatcher.go index 2577047beb..716ac09696 100644 --- a/x/wasm/keeper/msg_dispatcher.go +++ b/x/wasm/keeper/msg_dispatcher.go @@ -5,7 +5,7 @@ import ( "sort" "strings" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" abci "github.com/cometbft/cometbft/abci/types" errorsmod "cosmossdk.io/errors" @@ -15,8 +15,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var ( diff --git a/x/wasm/keeper/msg_dispatcher_test.go b/x/wasm/keeper/msg_dispatcher_test.go index a17a73281d..99efd73fe1 100644 --- a/x/wasm/keeper/msg_dispatcher_test.go +++ b/x/wasm/keeper/msg_dispatcher_test.go @@ -6,7 +6,7 @@ import ( "reflect" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" abci "github.com/cometbft/cometbft/abci/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -17,7 +17,7 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" ) func TestDispatchSubmessages(t *testing.T) { diff --git a/x/wasm/keeper/msg_server.go b/x/wasm/keeper/msg_server.go index 3616c8cf39..5e4e3ff011 100644 --- a/x/wasm/keeper/msg_server.go +++ b/x/wasm/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/wasm/keeper/msg_server_integration_test.go b/x/wasm/keeper/msg_server_integration_test.go index fad2b112b6..c72ec36d0a 100644 --- a/x/wasm/keeper/msg_server_integration_test.go +++ b/x/wasm/keeper/msg_server_integration_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" tmproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -15,9 +15,9 @@ import ( "github.com/cosmos/cosmos-sdk/testutil/testdata" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/app" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) //go:embed testdata/reflect_1_5.wasm diff --git a/x/wasm/keeper/msg_server_test.go b/x/wasm/keeper/msg_server_test.go index ff34162ccf..b07bb90cac 100644 --- a/x/wasm/keeper/msg_server_test.go +++ b/x/wasm/keeper/msg_server_test.go @@ -13,7 +13,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestSelectAuthorizationPolicy(t *testing.T) { diff --git a/x/wasm/keeper/options.go b/x/wasm/keeper/options.go index 8b001930ef..b639feb4e5 100644 --- a/x/wasm/keeper/options.go +++ b/x/wasm/keeper/options.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) type optsFn func(*Keeper) diff --git a/x/wasm/keeper/options_test.go b/x/wasm/keeper/options_test.go index 4a780245f0..f3bea7bab3 100644 --- a/x/wasm/keeper/options_test.go +++ b/x/wasm/keeper/options_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" "github.com/prometheus/client_golang/prometheus" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -18,8 +18,8 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestConstructorOptions(t *testing.T) { diff --git a/x/wasm/keeper/proposal_handler_legacy.go b/x/wasm/keeper/proposal_handler_legacy.go index d066e4b6e0..cede915e5f 100644 --- a/x/wasm/keeper/proposal_handler_legacy.go +++ b/x/wasm/keeper/proposal_handler_legacy.go @@ -11,7 +11,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // NewLegacyWasmProposalHandler creates a new governance Handler for wasm proposals diff --git a/x/wasm/keeper/proposal_integration_test.go b/x/wasm/keeper/proposal_integration_test.go index c228424180..ebe5dfcff5 100644 --- a/x/wasm/keeper/proposal_integration_test.go +++ b/x/wasm/keeper/proposal_integration_test.go @@ -6,7 +6,7 @@ import ( "fmt" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -18,8 +18,8 @@ import ( v1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestLoadStoredGovV1Beta1LegacyTypes(t *testing.T) { diff --git a/x/wasm/keeper/querier.go b/x/wasm/keeper/querier.go index 7e366f7b3c..8c6d138a13 100644 --- a/x/wasm/keeper/querier.go +++ b/x/wasm/keeper/querier.go @@ -21,7 +21,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // DefaultGasCostBuildAddress is the SDK gas cost to build a contract address diff --git a/x/wasm/keeper/querier_test.go b/x/wasm/keeper/querier_test.go index afd4ad3cc5..f65ce63efc 100644 --- a/x/wasm/keeper/querier_test.go +++ b/x/wasm/keeper/querier_test.go @@ -9,8 +9,8 @@ import ( "testing" "time" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "google.golang.org/grpc/codes" @@ -25,8 +25,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/query" govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestQueryAllContractState(t *testing.T) { diff --git a/x/wasm/keeper/query_plugin_integration_test.go b/x/wasm/keeper/query_plugin_integration_test.go index f9d126e20e..07d5224858 100644 --- a/x/wasm/keeper/query_plugin_integration_test.go +++ b/x/wasm/keeper/query_plugin_integration_test.go @@ -8,7 +8,7 @@ import ( "strings" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/cosmos/gogoproto/proto" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" "github.com/stretchr/testify/assert" @@ -22,8 +22,8 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestMaskReflectCustomQuery(t *testing.T) { diff --git a/x/wasm/keeper/query_plugins.go b/x/wasm/keeper/query_plugins.go index 2bb2246968..0689902348 100644 --- a/x/wasm/keeper/query_plugins.go +++ b/x/wasm/keeper/query_plugins.go @@ -6,7 +6,7 @@ import ( "errors" "fmt" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/gogoproto/proto" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" @@ -23,7 +23,7 @@ import ( distributiontypes "github.com/cosmos/cosmos-sdk/x/distribution/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) type QueryHandler struct { @@ -575,7 +575,7 @@ func sdkToFullDelegation(ctx sdk.Context, keeper types.StakingKeeper, distKeeper delegationCoins := ConvertSdkCoinToWasmCoin(amount) // FIXME: this is very rough but better than nothing... - // https://github.com/CosmWasm/wasmd/issues/282 + // https://github.com/ODIN-PROTOCOL/wasmd/issues/282 // if this (val, delegate) pair is receiving a redelegation, it cannot redelegate more // otherwise, it can redelegate the full amount // (there are cases of partial funds redelegated, but this is a start) diff --git a/x/wasm/keeper/query_plugins_test.go b/x/wasm/keeper/query_plugins_test.go index a36a8139f0..df35dc3f89 100644 --- a/x/wasm/keeper/query_plugins_test.go +++ b/x/wasm/keeper/query_plugins_test.go @@ -9,7 +9,7 @@ import ( "testing" "time" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" dbm "github.com/cosmos/cosmos-db" "github.com/cosmos/gogoproto/proto" @@ -32,10 +32,10 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/app" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestIBCQuerier(t *testing.T) { diff --git a/x/wasm/keeper/recurse_test.go b/x/wasm/keeper/recurse_test.go index 9cc93ebef5..2dc3da2cc0 100644 --- a/x/wasm/keeper/recurse_test.go +++ b/x/wasm/keeper/recurse_test.go @@ -4,7 +4,7 @@ import ( "encoding/json" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -13,7 +13,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) type Recurse struct { diff --git a/x/wasm/keeper/reflect_test.go b/x/wasm/keeper/reflect_test.go index d6a14ae361..054af7f486 100644 --- a/x/wasm/keeper/reflect_test.go +++ b/x/wasm/keeper/reflect_test.go @@ -5,7 +5,7 @@ import ( "os" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -19,8 +19,8 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var ( diff --git a/x/wasm/keeper/relay.go b/x/wasm/keeper/relay.go index a12293197b..e0f16d8407 100644 --- a/x/wasm/keeper/relay.go +++ b/x/wasm/keeper/relay.go @@ -3,7 +3,7 @@ package keeper import ( "time" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" @@ -13,7 +13,7 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var _ types.IBCContractKeeper = (*Keeper)(nil) diff --git a/x/wasm/keeper/relay_test.go b/x/wasm/keeper/relay_test.go index 69177a9538..a4928c201c 100644 --- a/x/wasm/keeper/relay_test.go +++ b/x/wasm/keeper/relay_test.go @@ -6,8 +6,8 @@ import ( "math" "testing" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -15,8 +15,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestOnOpenChannel(t *testing.T) { diff --git a/x/wasm/keeper/snapshotter.go b/x/wasm/keeper/snapshotter.go index ab813cc0ec..1c2f4c6490 100644 --- a/x/wasm/keeper/snapshotter.go +++ b/x/wasm/keeper/snapshotter.go @@ -14,8 +14,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/ioutils" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ioutils" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var _ snapshot.ExtensionSnapshotter = &WasmSnapshotter{} diff --git a/x/wasm/keeper/snapshotter_integration_test.go b/x/wasm/keeper/snapshotter_integration_test.go index ed9af49f99..2a064a6d8b 100644 --- a/x/wasm/keeper/snapshotter_integration_test.go +++ b/x/wasm/keeper/snapshotter_integration_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" tmproto "github.com/cometbft/cometbft/proto/tendermint/types" tmtypes "github.com/cometbft/cometbft/types" "github.com/stretchr/testify/assert" @@ -20,9 +20,9 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/CosmWasm/wasmd/app" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestSnapshotter(t *testing.T) { diff --git a/x/wasm/keeper/staking_test.go b/x/wasm/keeper/staking_test.go index 292094a52e..24be2f1d4d 100644 --- a/x/wasm/keeper/staking_test.go +++ b/x/wasm/keeper/staking_test.go @@ -5,7 +5,7 @@ import ( "os" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -20,8 +20,8 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) type StakingInitMsg struct { diff --git a/x/wasm/keeper/submsg_test.go b/x/wasm/keeper/submsg_test.go index b5e4a879ac..17e61cfcf1 100644 --- a/x/wasm/keeper/submsg_test.go +++ b/x/wasm/keeper/submsg_test.go @@ -7,8 +7,8 @@ import ( "strconv" "testing" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -18,9 +18,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // test handing of submessages, very closely related to the reflect_test diff --git a/x/wasm/keeper/test_common.go b/x/wasm/keeper/test_common.go index dbf52df037..fac2df2177 100644 --- a/x/wasm/keeper/test_common.go +++ b/x/wasm/keeper/test_common.go @@ -76,10 +76,10 @@ import ( stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - wasmappparams "github.com/CosmWasm/wasmd/app/params" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + wasmappparams "github.com/ODIN-PROTOCOL/wasmd/app/params" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var moduleBasics = module.NewBasicManager( diff --git a/x/wasm/keeper/test_fuzz.go b/x/wasm/keeper/test_fuzz.go index 7bd3e9bbd5..ee09d2db04 100644 --- a/x/wasm/keeper/test_fuzz.go +++ b/x/wasm/keeper/test_fuzz.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var ModelFuzzers = []interface{}{FuzzAddr, FuzzAddrString, FuzzAbsoluteTxPosition, FuzzContractInfo, FuzzStateModel, FuzzAccessType, FuzzAccessConfig, FuzzContractCodeHistory} diff --git a/x/wasm/keeper/testdata/contracts.go b/x/wasm/keeper/testdata/contracts.go index eb63bdeef6..ad0f9063f2 100644 --- a/x/wasm/keeper/testdata/contracts.go +++ b/x/wasm/keeper/testdata/contracts.go @@ -3,7 +3,7 @@ package testdata import ( _ "embed" - typwasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + typwasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/wasm/keeper/wasmtesting/gas_register.go b/x/wasm/keeper/wasmtesting/gas_register.go index a16de3b32d..706a00f2ab 100644 --- a/x/wasm/keeper/wasmtesting/gas_register.go +++ b/x/wasm/keeper/wasmtesting/gas_register.go @@ -1,7 +1,7 @@ package wasmtesting import ( - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" storetypes "cosmossdk.io/store/types" ) diff --git a/x/wasm/keeper/wasmtesting/messenger.go b/x/wasm/keeper/wasmtesting/messenger.go index 6c133406a5..dfb7a0114c 100644 --- a/x/wasm/keeper/wasmtesting/messenger.go +++ b/x/wasm/keeper/wasmtesting/messenger.go @@ -3,7 +3,7 @@ package wasmtesting import ( "errors" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/wasm/keeper/wasmtesting/mock_engine.go b/x/wasm/keeper/wasmtesting/mock_engine.go index 14a3976d1a..78f7b9165f 100644 --- a/x/wasm/keeper/wasmtesting/mock_engine.go +++ b/x/wasm/keeper/wasmtesting/mock_engine.go @@ -3,13 +3,13 @@ package wasmtesting import ( "bytes" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/cometbft/cometbft/libs/rand" errorsmod "cosmossdk.io/errors" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) const ( diff --git a/x/wasm/keeper/wasmtesting/mock_keepers.go b/x/wasm/keeper/wasmtesting/mock_keepers.go index 5c5f2a7f63..3bb2207a95 100644 --- a/x/wasm/keeper/wasmtesting/mock_keepers.go +++ b/x/wasm/keeper/wasmtesting/mock_keepers.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" @@ -12,7 +12,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) type MockChannelKeeper struct { diff --git a/x/wasm/keeper/wasmtesting/msg_dispatcher.go b/x/wasm/keeper/wasmtesting/msg_dispatcher.go index 2229fedab5..85fc1f0da7 100644 --- a/x/wasm/keeper/wasmtesting/msg_dispatcher.go +++ b/x/wasm/keeper/wasmtesting/msg_dispatcher.go @@ -1,7 +1,7 @@ package wasmtesting import ( - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/wasm/keeper/wasmtesting/query_handler.go b/x/wasm/keeper/wasmtesting/query_handler.go index 5f4a4501bb..5f8f1dce76 100644 --- a/x/wasm/keeper/wasmtesting/query_handler.go +++ b/x/wasm/keeper/wasmtesting/query_handler.go @@ -1,7 +1,7 @@ package wasmtesting import ( - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/wasm/migrations/v1/store.go b/x/wasm/migrations/v1/store.go index ab245b0e2a..6a4e91394d 100644 --- a/x/wasm/migrations/v1/store.go +++ b/x/wasm/migrations/v1/store.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // AddToSecondIndexFn creates a secondary index entry for the creator fo the contract diff --git a/x/wasm/migrations/v1/store_test.go b/x/wasm/migrations/v1/store_test.go index d85ff8f1f3..dd9b6a4b7e 100644 --- a/x/wasm/migrations/v1/store_test.go +++ b/x/wasm/migrations/v1/store_test.go @@ -10,8 +10,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/address" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestMigrate1To2(t *testing.T) { diff --git a/x/wasm/migrations/v2/params_legacy.go b/x/wasm/migrations/v2/params_legacy.go index d4fad0bdef..fa97546243 100644 --- a/x/wasm/migrations/v2/params_legacy.go +++ b/x/wasm/migrations/v2/params_legacy.go @@ -16,7 +16,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var ( diff --git a/x/wasm/migrations/v2/store.go b/x/wasm/migrations/v2/store.go index 481ef6865c..7a8f29ab7f 100644 --- a/x/wasm/migrations/v2/store.go +++ b/x/wasm/migrations/v2/store.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/exported" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/exported" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // MigrateStore migrates the x/wasm module state from the consensus version 2 to diff --git a/x/wasm/migrations/v2/store_test.go b/x/wasm/migrations/v2/store_test.go index f087e6f42f..1796b36ae4 100644 --- a/x/wasm/migrations/v2/store_test.go +++ b/x/wasm/migrations/v2/store_test.go @@ -17,9 +17,9 @@ import ( paramskeeper "github.com/cosmos/cosmos-sdk/x/params/keeper" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/CosmWasm/wasmd/x/wasm" - v2 "github.com/CosmWasm/wasmd/x/wasm/migrations/v2" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm" + v2 "github.com/ODIN-PROTOCOL/wasmd/x/wasm/migrations/v2" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestMigrate(t *testing.T) { diff --git a/x/wasm/migrations/v3/store.go b/x/wasm/migrations/v3/store.go index a4408ea61e..25a0602ca7 100644 --- a/x/wasm/migrations/v3/store.go +++ b/x/wasm/migrations/v3/store.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // StoreCodeInfoFn stores code info diff --git a/x/wasm/migrations/v3/store_test.go b/x/wasm/migrations/v3/store_test.go index b754599d76..dae59881b9 100644 --- a/x/wasm/migrations/v3/store_test.go +++ b/x/wasm/migrations/v3/store_test.go @@ -11,11 +11,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/address" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/CosmWasm/wasmd/x/wasm" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - v3 "github.com/CosmWasm/wasmd/x/wasm/migrations/v3" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + v3 "github.com/ODIN-PROTOCOL/wasmd/x/wasm/migrations/v3" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestMigrate3To4(t *testing.T) { diff --git a/x/wasm/module.go b/x/wasm/module.go index 4fdf8f9dd4..efcfb5b244 100644 --- a/x/wasm/module.go +++ b/x/wasm/module.go @@ -7,7 +7,7 @@ import ( "runtime/debug" "strings" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" abci "github.com/cometbft/cometbft/abci/types" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cast" @@ -25,11 +25,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/CosmWasm/wasmd/x/wasm/client/cli" - "github.com/CosmWasm/wasmd/x/wasm/exported" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/simulation" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/client/cli" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/exported" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/simulation" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) var ( @@ -280,7 +280,7 @@ func getExpectedLibwasmVersion() string { panic("can't read build info") } for _, d := range buildInfo.Deps { - if d.Path != "github.com/CosmWasm/wasmvm/v2" { + if d.Path != "github.com/ODIN-PROTOCOL/wasmvm/v2" { continue } if d.Replace != nil { @@ -292,7 +292,7 @@ func getExpectedLibwasmVersion() string { } // CheckLibwasmVersion ensures that the libwasmvm version loaded at runtime matches the version -// of the github.com/CosmWasm/wasmvm dependency in go.mod. This us useful when dealing with +// of the github.com/ODIN-PROTOCOL/wasmvm dependency in go.mod. This us useful when dealing with // shared libraries that are copied or moved from their default location, e.g. when building the node // on one machine and deploying it to other machines. // diff --git a/x/wasm/module_test.go b/x/wasm/module_test.go index 4fee3893e3..e3668d5ac2 100644 --- a/x/wasm/module_test.go +++ b/x/wasm/module_test.go @@ -23,12 +23,12 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - "github.com/CosmWasm/wasmd/app/params" - "github.com/CosmWasm/wasmd/x/wasm/exported" - "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - v2 "github.com/CosmWasm/wasmd/x/wasm/migrations/v2" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app/params" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/exported" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + v2 "github.com/ODIN-PROTOCOL/wasmd/x/wasm/migrations/v2" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) type mockSubspace struct { diff --git a/x/wasm/relay_pingpong_test.go b/x/wasm/relay_pingpong_test.go index d06a460714..c4368b5542 100644 --- a/x/wasm/relay_pingpong_test.go +++ b/x/wasm/relay_pingpong_test.go @@ -5,8 +5,8 @@ import ( "fmt" "testing" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" @@ -16,11 +16,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - app2 "github.com/CosmWasm/wasmd/app" - wasmibctesting "github.com/CosmWasm/wasmd/x/wasm/ibctesting" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + app2 "github.com/ODIN-PROTOCOL/wasmd/app" + wasmibctesting "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + wasmtypes "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) const ( diff --git a/x/wasm/relay_test.go b/x/wasm/relay_test.go index bfb906db6b..070e311b1b 100644 --- a/x/wasm/relay_test.go +++ b/x/wasm/relay_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" ibctransfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" clienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" //nolint:staticcheck channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" @@ -20,11 +20,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/CosmWasm/wasmd/app" - wasmibctesting "github.com/CosmWasm/wasmd/x/wasm/ibctesting" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/wasmtesting" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app" + wasmibctesting "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ibctesting" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/wasmtesting" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) func TestFromIBCTransferToContract(t *testing.T) { diff --git a/x/wasm/simulation/genesis.go b/x/wasm/simulation/genesis.go index 94db6be27f..d7cc0660be 100644 --- a/x/wasm/simulation/genesis.go +++ b/x/wasm/simulation/genesis.go @@ -3,7 +3,7 @@ package simulation import ( "github.com/cosmos/cosmos-sdk/types/module" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // RandomizeGenState generates a random GenesisState for wasm diff --git a/x/wasm/simulation/operations.go b/x/wasm/simulation/operations.go index c284a33342..3482566493 100644 --- a/x/wasm/simulation/operations.go +++ b/x/wasm/simulation/operations.go @@ -6,7 +6,7 @@ import ( "math/rand" "os" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" errorsmod "cosmossdk.io/errors" @@ -18,10 +18,10 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/tx" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/CosmWasm/wasmd/app/params" - wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app/params" + wasmkeeper "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) // Simulation operation weights constants diff --git a/x/wasm/simulation/proposals.go b/x/wasm/simulation/proposals.go index aeda227b23..64701c98bd 100644 --- a/x/wasm/simulation/proposals.go +++ b/x/wasm/simulation/proposals.go @@ -7,9 +7,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/CosmWasm/wasmd/app/params" - "github.com/CosmWasm/wasmd/x/wasm/keeper/testdata" - "github.com/CosmWasm/wasmd/x/wasm/types" + "github.com/ODIN-PROTOCOL/wasmd/app/params" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/keeper/testdata" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/types" ) const ( diff --git a/x/wasm/types/authz.go b/x/wasm/types/authz.go index 0e8279703f..db87f63512 100644 --- a/x/wasm/types/authz.go +++ b/x/wasm/types/authz.go @@ -5,7 +5,7 @@ import ( "context" "strings" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" "github.com/cosmos/gogoproto/proto" errorsmod "cosmossdk.io/errors" @@ -15,7 +15,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" authztypes "github.com/cosmos/cosmos-sdk/x/authz" - "github.com/CosmWasm/wasmd/x/wasm/ioutils" + "github.com/ODIN-PROTOCOL/wasmd/x/wasm/ioutils" ) const ( diff --git a/x/wasm/types/authz_test.go b/x/wasm/types/authz_test.go index f846691988..064699b174 100644 --- a/x/wasm/types/authz_test.go +++ b/x/wasm/types/authz_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/x/wasm/types/errors.go b/x/wasm/types/errors.go index 7ed79d5c4c..d33fb29f22 100644 --- a/x/wasm/types/errors.go +++ b/x/wasm/types/errors.go @@ -1,7 +1,7 @@ package types import ( - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" errorsmod "cosmossdk.io/errors" ) diff --git a/x/wasm/types/errors_test.go b/x/wasm/types/errors_test.go index 45d98c9299..b054928c73 100644 --- a/x/wasm/types/errors_test.go +++ b/x/wasm/types/errors_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/x/wasm/types/exported_keepers.go b/x/wasm/types/exported_keepers.go index 0ece2c0207..398145a9f5 100644 --- a/x/wasm/types/exported_keepers.go +++ b/x/wasm/types/exported_keepers.go @@ -3,7 +3,7 @@ package types import ( "context" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" channeltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" diff --git a/x/wasm/types/gas_register.go b/x/wasm/types/gas_register.go index 37d12d4e32..f8ed78a5f4 100644 --- a/x/wasm/types/gas_register.go +++ b/x/wasm/types/gas_register.go @@ -1,7 +1,7 @@ package types import ( - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" errorsmod "cosmossdk.io/errors" sdkmath "cosmossdk.io/math" @@ -24,17 +24,17 @@ const ( // In the 2.0 upgrade, this was reduced by a factor of 1000 (https://github.com/CosmWasm/cosmwasm/pull/1884). // // The multiplier deserves more reproducible benchmarking and a strategy that allows easy adjustments. - // This is tracked in https://github.com/CosmWasm/wasmd/issues/566 and https://github.com/CosmWasm/wasmd/issues/631. + // This is tracked in https://github.com/ODIN-PROTOCOL/wasmd/issues/566 and https://github.com/ODIN-PROTOCOL/wasmd/issues/631. // Gas adjustments are consensus breaking but may happen in any release marked as consensus breaking. // Do not make assumptions on how much gas an operation will consume in places that are hard to adjust, // such as hardcoding them in contracts. // // Please note that all gas prices returned to wasmvm should have this multiplied. - // Benchmarks and numbers were discussed in: https://github.com/CosmWasm/wasmd/pull/634#issuecomment-938055852 + // Benchmarks and numbers were discussed in: https://github.com/ODIN-PROTOCOL/wasmd/pull/634#issuecomment-938055852 DefaultGasMultiplier uint64 = 140_000 // DefaultInstanceCost is how much SDK gas we charge each time we load a WASM instance. // Creating a new instance is costly, and this helps put a recursion limit to contracts calling contracts. - // Benchmarks and numbers were discussed in: https://github.com/CosmWasm/wasmd/pull/634#issuecomment-938056803 + // Benchmarks and numbers were discussed in: https://github.com/ODIN-PROTOCOL/wasmd/pull/634#issuecomment-938056803 DefaultInstanceCost uint64 = 60_000 // DefaultInstanceCostDiscount is charged instead of DefaultInstanceCost for cases where // we assume the contract is loaded from an in-memory cache. @@ -42,7 +42,7 @@ const ( // Now we use something small that roughly reflects the 45µs startup time (30x cheaper than DefaultInstanceCost). DefaultInstanceCostDiscount uint64 = 2_000 // DefaultCompileCost is how much SDK gas is charged *per byte* for compiling WASM code. - // Benchmarks and numbers were discussed in: https://github.com/CosmWasm/wasmd/pull/634#issuecomment-938056803 + // Benchmarks and numbers were discussed in: https://github.com/ODIN-PROTOCOL/wasmd/pull/634#issuecomment-938056803 DefaultCompileCost uint64 = 3 // DefaultEventAttributeDataCost is how much SDK gas is charged *per byte* for attribute data in events. // This is used with len(key) + len(value) @@ -62,7 +62,7 @@ const ( ) // default: 0.15 gas. -// see https://github.com/CosmWasm/wasmd/pull/898#discussion_r937727200 +// see https://github.com/ODIN-PROTOCOL/wasmd/pull/898#discussion_r937727200 var defaultPerByteUncompressCost = wasmvmtypes.UFraction{ Numerator: 15, Denominator: 100, @@ -103,7 +103,7 @@ type WasmGasRegisterConfig struct { // InstanceCostDiscount is a discounted version of InstanceCost. It is charged whenever // we can reasonably assume that a contract is in one of the in-memory caches. E.g. // when the contract is pinned or we send a reply to a contract that was executed before. - // See also https://github.com/CosmWasm/wasmd/issues/1798 for more thinking around + // See also https://github.com/ODIN-PROTOCOL/wasmd/issues/1798 for more thinking around // discount cases. InstanceCostDiscount storetypes.Gas // CompileCosts costs to persist and "compile" a new wasm contract diff --git a/x/wasm/types/gas_register_test.go b/x/wasm/types/gas_register_test.go index 45e9719cbf..c08c7b2417 100644 --- a/x/wasm/types/gas_register_test.go +++ b/x/wasm/types/gas_register_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/stretchr/testify/assert" storetypes "cosmossdk.io/store/types" diff --git a/x/wasm/types/test_fixtures.go b/x/wasm/types/test_fixtures.go index e1d03c59c7..9a5907ef75 100644 --- a/x/wasm/types/test_fixtures.go +++ b/x/wasm/types/test_fixtures.go @@ -4,7 +4,7 @@ import ( _ "embed" "math/rand" - wasmvm "github.com/CosmWasm/wasmvm/v2" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" sdkmath "cosmossdk.io/math" diff --git a/x/wasm/types/types.go b/x/wasm/types/types.go index 4b2a83e0d9..31bd0d6517 100644 --- a/x/wasm/types/types.go +++ b/x/wasm/types/types.go @@ -4,7 +4,7 @@ import ( "fmt" "reflect" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/cosmos/gogoproto/proto" errorsmod "cosmossdk.io/errors" diff --git a/x/wasm/types/types_test.go b/x/wasm/types/types_test.go index d00cf5ca3a..3cef80807a 100644 --- a/x/wasm/types/types_test.go +++ b/x/wasm/types/types_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" "github.com/cometbft/cometbft/libs/rand" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/x/wasm/types/wasmer_engine.go b/x/wasm/types/wasmer_engine.go index ce1a56ffc4..30cc845fd0 100644 --- a/x/wasm/types/wasmer_engine.go +++ b/x/wasm/types/wasmer_engine.go @@ -1,8 +1,8 @@ package types import ( - wasmvm "github.com/CosmWasm/wasmvm/v2" - wasmvmtypes "github.com/CosmWasm/wasmvm/v2/types" + wasmvm "github.com/ODIN-PROTOCOL/wasmvm/v2" + wasmvmtypes "github.com/ODIN-PROTOCOL/wasmvm/v2/types" storetypes "cosmossdk.io/store/types" )