Skip to content
Merged
Show file tree
Hide file tree
Changes from 11 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
688 changes: 688 additions & 0 deletions api/gen/swagger.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion api/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buf export buf.build/noble-assets/florin:v2.0.0 --output api/proto
buf export buf.build/noble-assets/forwarding:v2.0.3 --output api/proto
buf export buf.build/noble-assets/globalfee:v1.0.1 --output api/proto
buf export buf.build/noble-assets/halo:v2.0.1 --output api/proto
buf export buf.build/noble-assets/orbiter:v1.0.0-beta.0 --output api/proto
buf export buf.build/noble-assets/orbiter:v1.0.0-rc.1 --output api/proto
buf export buf.build/noble-assets/rate-limiting:v8.0.0 --output api/proto
buf export buf.build/noble-assets/swap:v1.0.2 --output api/proto
buf export buf.build/noble-assets/wormhole:v1.0.0 --output api/proto
Expand Down
8 changes: 7 additions & 1 deletion app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ modules:
- account: hyperlane
- account: warp
- account: orbiter
- account: orbiter/dust_collector
authority: authority # Utilize our custom x/authority module.
- name: authz
config:
Expand All @@ -94,7 +95,12 @@ modules:
config:
"@type": cosmos.bank.module.v1.Module
blocked_module_accounts_override:
[auth, bonded_tokens_pool, not_bonded_tokens_pool]
[
auth,
bonded_tokens_pool,
not_bonded_tokens_pool,
orbiter/dust_collector,
]
authority: authority # Utilize our custom x/authority module.
- name: consensus
config:
Expand Down
11 changes: 8 additions & 3 deletions e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ module github.com/noble-assets/noble/e2e

go 1.24.0

toolchain go1.24.7

require (
cosmossdk.io/math v1.5.1
cosmossdk.io/x/upgrade v0.1.4
Expand All @@ -17,6 +15,7 @@ require (
github.com/monerium/module-noble/v2 v2.0.0
github.com/noble-assets/authority v1.0.4
github.com/noble-assets/halo/v2 v2.0.1
github.com/noble-assets/noble v1.0.0
github.com/ondoprotocol/usdy-noble/v2 v2.0.0
github.com/strangelove-ventures/interchaintest/v8 v8.8.0
github.com/stretchr/testify v1.11.1
Expand All @@ -33,7 +32,6 @@ require (
cloud.google.com/go/monitoring v1.24.2 // indirect
cloud.google.com/go/storage v1.56.0 // indirect
cosmossdk.io/api v0.9.2 // indirect
cosmossdk.io/client/v2 v2.0.0-beta.8 // indirect
cosmossdk.io/collections v1.2.1 // indirect
cosmossdk.io/core v0.11.3 // indirect
cosmossdk.io/depinject v1.2.1 // indirect
Expand All @@ -44,6 +42,7 @@ require (
cosmossdk.io/x/evidence v0.1.1 // indirect
cosmossdk.io/x/feegrant v0.1.1 // indirect
cosmossdk.io/x/tx v0.13.8 // indirect
dollar.noble.xyz/v2 v2.2.0-rc.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.2 // indirect
Expand All @@ -63,6 +62,7 @@ require (
github.com/StirlingMarketingGroup/go-namecase v1.0.0 // indirect
github.com/avast/retry-go/v4 v4.5.1 // indirect
github.com/aws/aws-sdk-go v1.44.224 // indirect
github.com/bcp-innovations/hyperlane-cosmos v1.0.1 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect
Expand Down Expand Up @@ -129,6 +129,7 @@ require (
github.com/go-ole/go-ole v1.3.0 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/go-playground/validator/v10 v10.11.1 // indirect
github.com/go-viper/mapstructure/v2 v2.4.0 // indirect
github.com/gobwas/httphead v0.1.0 // indirect
github.com/gobwas/pool v0.2.1 // indirect
github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect
Expand Down Expand Up @@ -212,6 +213,7 @@ require (
github.com/ncruces/go-strftime v0.1.9 // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20230904125328-1f23a7beb09a // indirect
github.com/oklog/run v1.1.0 // indirect
github.com/onsi/ginkgo/v2 v2.23.3 // indirect
github.com/onsi/gomega v1.37.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.0-rc2 // indirect
Expand Down Expand Up @@ -256,6 +258,7 @@ require (
github.com/tyler-smith/go-bip32 v1.0.0 // indirect
github.com/tyler-smith/go-bip39 v1.1.0 // indirect
github.com/ulikunitz/xz v0.5.14 // indirect
github.com/wormhole-foundation/wormhole/sdk v0.0.0-20241218143724-3797ed082150 // indirect
github.com/zeebo/errs v1.4.0 // indirect
github.com/zondax/hid v0.9.2 // indirect
github.com/zondax/ledger-go v0.14.3 // indirect
Expand Down Expand Up @@ -309,8 +312,10 @@ require (
)

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