Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -235,17 +235,17 @@ require (
)

replace (
cosmossdk.io/api => github.com/InjectiveLabs/cosmos-sdk/api v0.50.14-inj
cosmossdk.io/client/v2 => github.com/InjectiveLabs/cosmos-sdk/client/v2 v2.0.0-v0.50.14-inj
cosmossdk.io/core => github.com/InjectiveLabs/cosmos-sdk/core v0.50.14-inj
cosmossdk.io/errors => github.com/InjectiveLabs/cosmos-sdk/errors v0.50.14-inj
cosmossdk.io/store => github.com/InjectiveLabs/cosmos-sdk/store v0.50.14-inj
cosmossdk.io/x/circuit => github.com/InjectiveLabs/cosmos-sdk/x/circuit v0.50.14-inj
cosmossdk.io/x/evidence => github.com/InjectiveLabs/cosmos-sdk/x/evidence v0.50.14-inj
cosmossdk.io/x/feegrant => github.com/InjectiveLabs/cosmos-sdk/x/feegrant v0.50.14-inj
cosmossdk.io/x/nft => github.com/InjectiveLabs/cosmos-sdk/x/nft v0.50.14-inj
cosmossdk.io/x/tx => github.com/InjectiveLabs/cosmos-sdk/x/tx v0.50.14-inj
cosmossdk.io/x/upgrade => github.com/InjectiveLabs/cosmos-sdk/x/upgrade v0.50.14-inj
cosmossdk.io/api => github.com/InjectiveLabs/cosmos-sdk/api v0.50.14-inj.4
cosmossdk.io/client/v2 => github.com/InjectiveLabs/cosmos-sdk/client/v2 v2.0.0-v0.50.14-inj.4
cosmossdk.io/core => github.com/InjectiveLabs/cosmos-sdk/core v0.50.14-inj.4
cosmossdk.io/errors => github.com/InjectiveLabs/cosmos-sdk/errors v0.50.14-inj.4
cosmossdk.io/store => github.com/InjectiveLabs/cosmos-sdk/store v0.50.14-inj.4
cosmossdk.io/x/circuit => github.com/InjectiveLabs/cosmos-sdk/x/circuit v0.50.14-inj.4
cosmossdk.io/x/evidence => github.com/InjectiveLabs/cosmos-sdk/x/evidence v0.50.14-inj.4
cosmossdk.io/x/feegrant => github.com/InjectiveLabs/cosmos-sdk/x/feegrant v0.50.14-inj.4
cosmossdk.io/x/nft => github.com/InjectiveLabs/cosmos-sdk/x/nft v0.50.14-inj.4
cosmossdk.io/x/tx => github.com/InjectiveLabs/cosmos-sdk/x/tx v0.50.14-inj.4
cosmossdk.io/x/upgrade => github.com/InjectiveLabs/cosmos-sdk/x/upgrade v0.50.14-inj.4

github.com/CosmWasm/wasmd => github.com/InjectiveLabs/wasmd v0.53.3-inj.2
github.com/bandprotocol/bandchain-packet => github.com/InjectiveLabs/bandchain-packet v0.0.4-inj-1
Expand All @@ -254,7 +254,7 @@ replace (

github.com/cometbft/cometbft => github.com/InjectiveLabs/cometbft v1.0.1-inj.6
github.com/cometbft/cometbft/api => github.com/InjectiveLabs/cometbft/api v1.0.0-inj.2
Copy link

Copilot AI Feb 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

replace github.com/cosmos/cosmos-sdk => ... v0.50.14-inj.4 now points at a newer fork than the require github.com/cosmos/cosmos-sdk v0.50.12 version earlier in the file. Even though the replace will override the code for this module, leaving require behind can be confusing and can cause downstream consumers (who don't apply this module's replace directives) to resolve an unexpected SDK version. Consider updating the require version to the matching upstream tag (e.g., v0.50.14) or otherwise documenting/enforcing the expected fork/version.

Suggested change
github.com/cometbft/cometbft/api => github.com/InjectiveLabs/cometbft/api v1.0.0-inj.2
github.com/cometbft/cometbft/api => github.com/InjectiveLabs/cometbft/api v1.0.0-inj.2
// NOTE: This module is built and tested against the InjectiveLabs fork of
// github.com/cosmos/cosmos-sdk at v0.50.14-inj.4 (tracking upstream v0.50.14).
// Downstream consumers should either pin the same upstream version or add
// an equivalent replace directive to ensure they use a compatible SDK.

Copilot uses AI. Check for mistakes.
github.com/cosmos/cosmos-sdk => github.com/InjectiveLabs/cosmos-sdk v0.50.14-inj
github.com/cosmos/cosmos-sdk => github.com/InjectiveLabs/cosmos-sdk v0.50.14-inj.4

github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8 => github.com/InjectiveLabs/ibc-apps/middleware/packet-forward-middleware/v8 v8.2.0-inj.3
github.com/cosmos/ibc-apps/modules/ibc-hooks/v8 => github.com/InjectiveLabs/ibc-apps/modules/ibc-hooks/v8 v8.0.0-inj.3
Expand All @@ -263,7 +263,7 @@ replace (
github.com/cosmos/ibc-go/v8 => github.com/InjectiveLabs/ibc-go/v8 v8.7.0-inj.3

// geth dev
github.com/ethereum/go-ethereum => github.com/InjectiveLabs/go-ethereum v1.16.3-inj
github.com/ethereum/go-ethereum => github.com/InjectiveLabs/go-ethereum v1.16.3-inj.2
Comment on lines 265 to +266
Copy link

Copilot AI Feb 13, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Similar to cosmos-sdk, this replace github.com/ethereum/go-ethereum => ... v1.16.3-inj.2 is ahead of the require github.com/ethereum/go-ethereum v1.15.7 declared earlier. To keep the module metadata aligned (and reduce surprises for consumers that won't see these replaces), consider bumping the require version to v1.16.3 as well.

Copilot uses AI. Check for mistakes.

github.com/improbable-eng/grpc-web => github.com/maxim-inj/grpc-web v0.15.0-inj

Expand Down
48 changes: 24 additions & 24 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -69,32 +69,32 @@ github.com/InjectiveLabs/cometbft v1.0.1-inj.6 h1:Q+uiKcth/gU2RKjFiFk+7BXlqW6hEU
github.com/InjectiveLabs/cometbft v1.0.1-inj.6/go.mod h1:RgHHndb7wdtm9etmVj4tDn1NynC9YKIEJW9UUI3FCn4=
github.com/InjectiveLabs/cometbft/api v1.0.0-inj.2 h1:uXsmBVeBickTjZ2GqPNYXShoboRw1m2Cq1bKv4QCe0o=
github.com/InjectiveLabs/cometbft/api v1.0.0-inj.2/go.mod h1:Ivh6nSCTJPQOyfQo8dgnyu/T88it092sEqSrZSmTQN8=
github.com/InjectiveLabs/cosmos-sdk v0.50.14-inj h1:8ggLVXSVF6hz8VFB5ly1l9os4G4roqSsIzsGtH/8W70=
github.com/InjectiveLabs/cosmos-sdk v0.50.14-inj/go.mod h1:8DbOKfQWQL1P4zmwqwgkde/CzWJfpp6EmCRONg6vLGw=
github.com/InjectiveLabs/cosmos-sdk/api v0.50.14-inj h1:2cq+e0Qy8OSLcMBrytMJBYXGC6+tdKbE/MtlEErWMj8=
github.com/InjectiveLabs/cosmos-sdk/api v0.50.14-inj/go.mod h1:iCp7MYEpKTFW/Tp/zgdeLLIMdll5bFwd5cchKCU/Zd4=
github.com/InjectiveLabs/cosmos-sdk/client/v2 v2.0.0-v0.50.14-inj h1:sxb0DH6tNIzb4NvAyIBKErmL41Ju9tGM7k5UTR9KaGI=
github.com/InjectiveLabs/cosmos-sdk/client/v2 v2.0.0-v0.50.14-inj/go.mod h1:eKkKWHH8UVlnOKYkaXlm8bJg0aGqjQZHAeh/AEIWZlA=
github.com/InjectiveLabs/cosmos-sdk/core v0.50.14-inj h1:Y+oYpU7fsWvwQS305d7MdYJbMIZ2Ak0TmM7RG1wN0FI=
github.com/InjectiveLabs/cosmos-sdk/core v0.50.14-inj/go.mod h1:01u7jX5X4U/LlkPfEONgYGMTsHtyLPeFm1cPHeLce2Y=
github.com/InjectiveLabs/cosmos-sdk/errors v0.50.14-inj h1:hm/AI80d643GkzUkP2FvvsUm08Y3QA9P8Vbu5g4R3fk=
github.com/InjectiveLabs/cosmos-sdk/errors v0.50.14-inj/go.mod h1:9rR524Mje4ycQhYRcl2ETVoBz0co/8j2vR0goOPLQfg=
github.com/InjectiveLabs/cosmos-sdk/store v0.50.14-inj h1:fhSjBWkDCHWAxX0jYk9eI+mSaADJXvLQZ1PcBJiTnic=
github.com/InjectiveLabs/cosmos-sdk/store v0.50.14-inj/go.mod h1:nU5wYnMN3tqAHvK0kUuriS8ic1pY2VO/moBrUnGpGBg=
github.com/InjectiveLabs/cosmos-sdk/x/circuit v0.50.14-inj h1:ZYmoujER7mXiRQUDlsCLd/8dG4eBxABtqo7U68PA/98=
github.com/InjectiveLabs/cosmos-sdk/x/circuit v0.50.14-inj/go.mod h1:jAAqnUW5nwAGNSaNiH9zBox31WBH6MbFAKh2rqPMK8Y=
github.com/InjectiveLabs/cosmos-sdk/x/evidence v0.50.14-inj h1:heW2NuwrKlly0KKncFJrzDYYcVeh8/k4BdprsGYLyJk=
github.com/InjectiveLabs/cosmos-sdk/x/evidence v0.50.14-inj/go.mod h1:sVmI1LxDBhjiyST3iObdp44p56sExIBl2mBOR2BXGdw=
github.com/InjectiveLabs/cosmos-sdk/x/feegrant v0.50.14-inj h1:3o7bI2wHJyPyRSfPJxC0qUFi1p+h2CsA56ps4/KVFAM=
github.com/InjectiveLabs/cosmos-sdk/x/feegrant v0.50.14-inj/go.mod h1:QEuHVZ4yBgUTorb0M2wle34bC6vyDNXrvE7INQOde2k=
github.com/InjectiveLabs/cosmos-sdk/x/tx v0.50.14-inj h1:CMtH/kdfa9cyw2dhANDhMg8YVlffx52jqfcDeo+ZKN4=
github.com/InjectiveLabs/cosmos-sdk/x/tx v0.50.14-inj/go.mod h1:RzwBnxpUANKmfOnl8uN2v3gIl6+XSh4S1B9lNVxXQNk=
github.com/InjectiveLabs/cosmos-sdk/x/upgrade v0.50.14-inj h1:bFfBe48u6BXO9H94RLFBx3IhBiHTHxlsQRMMEVLg7SE=
github.com/InjectiveLabs/cosmos-sdk/x/upgrade v0.50.14-inj/go.mod h1:9uvjYHCSZimsO1woqmRYk53BfQtDAMv5STCcwhy2CnU=
github.com/InjectiveLabs/cosmos-sdk v0.50.14-inj.4 h1:SZ14jD3yyTUnpSRSRkYvTNNdknPiJkdUgh4pXRsxY5A=
github.com/InjectiveLabs/cosmos-sdk v0.50.14-inj.4/go.mod h1:8DbOKfQWQL1P4zmwqwgkde/CzWJfpp6EmCRONg6vLGw=
github.com/InjectiveLabs/cosmos-sdk/api v0.50.14-inj.4 h1:a1v0MiWEUK3RCMa7QChBJwajX2TkD1evuu1mbvk9taI=
github.com/InjectiveLabs/cosmos-sdk/api v0.50.14-inj.4/go.mod h1:iCp7MYEpKTFW/Tp/zgdeLLIMdll5bFwd5cchKCU/Zd4=
github.com/InjectiveLabs/cosmos-sdk/client/v2 v2.0.0-v0.50.14-inj.4 h1:9qUT5v+S8PtLE8hrZgkVb5Ws/lTqqal7YAOEc/WFtMQ=
github.com/InjectiveLabs/cosmos-sdk/client/v2 v2.0.0-v0.50.14-inj.4/go.mod h1:eKkKWHH8UVlnOKYkaXlm8bJg0aGqjQZHAeh/AEIWZlA=
github.com/InjectiveLabs/cosmos-sdk/core v0.50.14-inj.4 h1:n6lHOUR2/62KyRaOosOl0D+EAMr6NnoZw6GQPwTpurM=
github.com/InjectiveLabs/cosmos-sdk/core v0.50.14-inj.4/go.mod h1:01u7jX5X4U/LlkPfEONgYGMTsHtyLPeFm1cPHeLce2Y=
github.com/InjectiveLabs/cosmos-sdk/errors v0.50.14-inj.4 h1:2Iljmx+Z88I9gX0G+EimGVWE5mjoNB2B2TT6Hq1k7dI=
github.com/InjectiveLabs/cosmos-sdk/errors v0.50.14-inj.4/go.mod h1:9rR524Mje4ycQhYRcl2ETVoBz0co/8j2vR0goOPLQfg=
github.com/InjectiveLabs/cosmos-sdk/store v0.50.14-inj.4 h1:fy6KAfsk4WRgA3g5S4KV5UuoEcVHWjGayCipGqe/ppE=
github.com/InjectiveLabs/cosmos-sdk/store v0.50.14-inj.4/go.mod h1:nU5wYnMN3tqAHvK0kUuriS8ic1pY2VO/moBrUnGpGBg=
github.com/InjectiveLabs/cosmos-sdk/x/circuit v0.50.14-inj.4 h1:9eB4q7tXHBcOXa+VIGmf6cbwidMZzqCTPMff4iNXeIM=
github.com/InjectiveLabs/cosmos-sdk/x/circuit v0.50.14-inj.4/go.mod h1:jAAqnUW5nwAGNSaNiH9zBox31WBH6MbFAKh2rqPMK8Y=
github.com/InjectiveLabs/cosmos-sdk/x/evidence v0.50.14-inj.4 h1:NX9UWdq3ZhYMU21kcDzlWf4oRs4qb/REeGaJU0LF94s=
github.com/InjectiveLabs/cosmos-sdk/x/evidence v0.50.14-inj.4/go.mod h1:sVmI1LxDBhjiyST3iObdp44p56sExIBl2mBOR2BXGdw=
github.com/InjectiveLabs/cosmos-sdk/x/feegrant v0.50.14-inj.4 h1:KxahR2doDkhBirwx8+jSgUH6UujuOt27kWVBFbEXmK4=
github.com/InjectiveLabs/cosmos-sdk/x/feegrant v0.50.14-inj.4/go.mod h1:QEuHVZ4yBgUTorb0M2wle34bC6vyDNXrvE7INQOde2k=
github.com/InjectiveLabs/cosmos-sdk/x/tx v0.50.14-inj.4 h1:SsEPRGitmcV/utuIiKMkenKZ8aO6zwBBBvCmMGDvcD0=
github.com/InjectiveLabs/cosmos-sdk/x/tx v0.50.14-inj.4/go.mod h1:RzwBnxpUANKmfOnl8uN2v3gIl6+XSh4S1B9lNVxXQNk=
github.com/InjectiveLabs/cosmos-sdk/x/upgrade v0.50.14-inj.4 h1:esFo9T14Bj41enz4ZJEuG5RQS2P9dwUr4b95jvbiGoo=
github.com/InjectiveLabs/cosmos-sdk/x/upgrade v0.50.14-inj.4/go.mod h1:9uvjYHCSZimsO1woqmRYk53BfQtDAMv5STCcwhy2CnU=
github.com/InjectiveLabs/go-bip39 v1.1.0 h1:pb7szpEmFhxsHYPg+1roFACJRpC3hHE5/SZjInZ4uyE=
github.com/InjectiveLabs/go-bip39 v1.1.0/go.mod h1:gUYDtqQw1JS3ZJ8UWVcGTGqqr6YIN3CWg+kkNaLt55U=
github.com/InjectiveLabs/go-ethereum v1.16.3-inj h1:Wwtc4lAzgeXQWqgRU54dmduCElDnbiG0PINdprBcbLk=
github.com/InjectiveLabs/go-ethereum v1.16.3-inj/go.mod h1:Lrsc6bt9Gm9RyvhfFK53vboCia8kpF9nv+2Ukntnl+8=
github.com/InjectiveLabs/go-ethereum v1.16.3-inj.2 h1:20SwI6J3SU2Y2NRq6kUVdBZbWuJU/hAd2+eDje50z2A=
github.com/InjectiveLabs/go-ethereum v1.16.3-inj.2/go.mod h1:Lrsc6bt9Gm9RyvhfFK53vboCia8kpF9nv+2Ukntnl+8=
github.com/InjectiveLabs/hyperlane-cosmos v1.0.1-inj h1:FrfheY6aFibpFK+BRM7lcKfvZY129jeqykj17T6YGuk=
github.com/InjectiveLabs/hyperlane-cosmos v1.0.1-inj/go.mod h1:qPRUSSE9RTnZYHsfLmXWn7GKy+VYmSAm52Ey6Gz4JSM=
github.com/InjectiveLabs/ibc-go/modules/capability v1.0.0-inj.3 h1:cgsP+ZYcyNX8EkQicK38acv4B+XtzX+x2EkdkX+Gges=
Expand Down