Skip to content

Commit c2da08b

Browse files
authored
feat: bump orbiter module to v1.0.0-rc.1 (#599)
1 parent 698667c commit c2da08b

13 files changed

Lines changed: 1004 additions & 53 deletions

File tree

api/gen/swagger.yaml

Lines changed: 688 additions & 0 deletions
Large diffs are not rendered by default.

api/generate.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ buf export buf.build/noble-assets/florin:v2.0.0 --output api/proto
1515
buf export buf.build/noble-assets/forwarding:v2.0.3 --output api/proto
1616
buf export buf.build/noble-assets/globalfee:v1.0.1 --output api/proto
1717
buf export buf.build/noble-assets/halo:v2.0.1 --output api/proto
18-
buf export buf.build/noble-assets/orbiter:v1.0.0-beta.0 --output api/proto
18+
buf export buf.build/noble-assets/orbiter:v1.0.0-rc.1 --output api/proto
1919
buf export buf.build/noble-assets/rate-limiting:v8.0.0 --output api/proto
2020
buf export buf.build/noble-assets/swap:v1.0.2 --output api/proto
2121
buf export buf.build/noble-assets/wormhole:v1.0.0 --output api/proto

app.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ modules:
8686
- account: hyperlane
8787
- account: warp
8888
- account: orbiter
89+
- account: orbiter/dust_collector
8990
authority: authority # Utilize our custom x/authority module.
9091
- name: authz
9192
config:
@@ -94,7 +95,12 @@ modules:
9495
config:
9596
"@type": cosmos.bank.module.v1.Module
9697
blocked_module_accounts_override:
97-
[auth, bonded_tokens_pool, not_bonded_tokens_pool]
98+
[
99+
auth,
100+
bonded_tokens_pool,
101+
not_bonded_tokens_pool,
102+
orbiter/dust_collector,
103+
]
98104
authority: authority # Utilize our custom x/authority module.
99105
- name: consensus
100106
config:

e2e/go.mod

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module github.com/noble-assets/noble/e2e
22

33
go 1.24.0
44

5-
toolchain go1.24.7
6-
75
require (
86
cosmossdk.io/math v1.5.1
97
cosmossdk.io/x/upgrade v0.1.4
@@ -17,6 +15,7 @@ require (
1715
github.com/monerium/module-noble/v2 v2.0.0
1816
github.com/noble-assets/authority v1.0.4
1917
github.com/noble-assets/halo/v2 v2.0.1
18+
github.com/noble-assets/noble v1.0.0
2019
github.com/ondoprotocol/usdy-noble/v2 v2.0.0
2120
github.com/strangelove-ventures/interchaintest/v8 v8.8.0
2221
github.com/stretchr/testify v1.11.1
@@ -33,7 +32,6 @@ require (
3332
cloud.google.com/go/monitoring v1.24.2 // indirect
3433
cloud.google.com/go/storage v1.56.0 // indirect
3534
cosmossdk.io/api v0.9.2 // indirect
36-
cosmossdk.io/client/v2 v2.0.0-beta.8 // indirect
3735
cosmossdk.io/collections v1.2.1 // indirect
3836
cosmossdk.io/core v0.11.3 // indirect
3937
cosmossdk.io/depinject v1.2.1 // indirect
@@ -44,6 +42,7 @@ require (
4442
cosmossdk.io/x/evidence v0.1.1 // indirect
4543
cosmossdk.io/x/feegrant v0.1.1 // indirect
4644
cosmossdk.io/x/tx v0.13.8 // indirect
45+
dollar.noble.xyz/v2 v2.2.0-rc.0 // indirect
4746
filippo.io/edwards25519 v1.1.0 // indirect
4847
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect
4948
github.com/99designs/keyring v1.2.2 // indirect
@@ -63,6 +62,7 @@ require (
6362
github.com/StirlingMarketingGroup/go-namecase v1.0.0 // indirect
6463
github.com/avast/retry-go/v4 v4.5.1 // indirect
6564
github.com/aws/aws-sdk-go v1.44.224 // indirect
65+
github.com/bcp-innovations/hyperlane-cosmos v1.0.1 // indirect
6666
github.com/beorn7/perks v1.0.1 // indirect
6767
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
6868
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect
@@ -129,6 +129,7 @@ require (
129129
github.com/go-ole/go-ole v1.3.0 // indirect
130130
github.com/go-playground/universal-translator v0.18.1 // indirect
131131
github.com/go-playground/validator/v10 v10.11.1 // indirect
132+
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
132133
github.com/gobwas/httphead v0.1.0 // indirect
133134
github.com/gobwas/pool v0.2.1 // indirect
134135
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
@@ -212,6 +213,7 @@ require (
212213
github.com/ncruces/go-strftime v0.1.9 // indirect
213214
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
214215
github.com/oklog/run v1.1.0 // indirect
216+
github.com/onsi/ginkgo/v2 v2.23.3 // indirect
215217
github.com/onsi/gomega v1.37.0 // indirect
216218
github.com/opencontainers/go-digest v1.0.0 // indirect
217219
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
@@ -256,6 +258,7 @@ require (
256258
github.com/tyler-smith/go-bip32 v1.0.0 // indirect
257259
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
258260
github.com/ulikunitz/xz v0.5.14 // indirect
261+
github.com/wormhole-foundation/wormhole/sdk v0.0.0-20241218143724-3797ed082150 // indirect
259262
github.com/zeebo/errs v1.4.0 // indirect
260263
github.com/zondax/hid v0.9.2 // indirect
261264
github.com/zondax/ledger-go v0.14.3 // indirect
@@ -309,8 +312,10 @@ require (
309312
)
310313

311314
replace (
315+
cosmossdk.io/collections => github.com/noble-assets/cosmos-sdk/collections v0.0.0-20250923134424-edd65694c2f7
312316
github.com/ChainSafe/go-schnorrkel => github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d
313317
github.com/ChainSafe/go-schnorrkel/1 => github.com/ChainSafe/go-schnorrkel v1.0.0
314318
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
319+
github.com/noble-assets/noble => ../
315320
github.com/vedhavyas/go-subkey => github.com/strangelove-ventures/go-subkey v1.0.7
316321
)

0 commit comments

Comments
 (0)