-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dan/restricted-mods
- Loading branch information
Showing
10 changed files
with
205 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
package cmd | ||
|
||
import ( | ||
"os" | ||
|
||
"cosmossdk.io/client/v2/autocli" | ||
clientv2keyring "cosmossdk.io/client/v2/autocli/keyring" | ||
"cosmossdk.io/core/address" | ||
"cosmossdk.io/core/appmodule" | ||
"cosmossdk.io/depinject" | ||
"cosmossdk.io/log" | ||
"github.com/cosmos/cosmos-sdk/client" | ||
"github.com/cosmos/cosmos-sdk/client/config" | ||
"github.com/cosmos/cosmos-sdk/codec" | ||
codectypes "github.com/cosmos/cosmos-sdk/codec/types" | ||
"github.com/cosmos/cosmos-sdk/crypto/keyring" | ||
sdk "github.com/cosmos/cosmos-sdk/types" | ||
"github.com/cosmos/cosmos-sdk/types/module" | ||
"github.com/cosmos/cosmos-sdk/x/auth/tx" | ||
"github.com/cosmos/cosmos-sdk/x/auth/types" | ||
pfm "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8/packetforward" | ||
pfmtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v8/packetforward/types" | ||
"github.com/cosmos/ibc-go/modules/capability" | ||
capabilitytypes "github.com/cosmos/ibc-go/modules/capability/types" | ||
ica "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts" | ||
icatypes "github.com/cosmos/ibc-go/v8/modules/apps/27-interchain-accounts/types" | ||
"github.com/cosmos/ibc-go/v8/modules/apps/transfer" | ||
transfertypes "github.com/cosmos/ibc-go/v8/modules/apps/transfer/types" | ||
ibc "github.com/cosmos/ibc-go/v8/modules/core" | ||
ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" | ||
soloclient "github.com/cosmos/ibc-go/v8/modules/light-clients/06-solomachine" | ||
tmclient "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" | ||
"github.com/noble-assets/noble/v8" | ||
) | ||
|
||
var ( | ||
// Bech32PrefixAccAddr defines the Bech32 prefix of an account's address. | ||
Bech32PrefixAccAddr = "noble" | ||
// Bech32PrefixAccPub defines the Bech32 prefix of an account's public key. | ||
Bech32PrefixAccPub = Bech32PrefixAccAddr + "pub" | ||
// Bech32PrefixValAddr defines the Bech32 prefix of a validator's operator address. | ||
Bech32PrefixValAddr = Bech32PrefixAccAddr + "valoper" | ||
// Bech32PrefixValPub defines the Bech32 prefix of a validator's operator public key. | ||
Bech32PrefixValPub = Bech32PrefixAccAddr + "valoperpub" | ||
// Bech32PrefixConsAddr defines the Bech32 prefix of a consensus node address. | ||
Bech32PrefixConsAddr = Bech32PrefixAccAddr + "valcons" | ||
// Bech32PrefixConsPub defines the Bech32 prefix of a consensus node public key. | ||
Bech32PrefixConsPub = Bech32PrefixAccAddr + "valconspub" | ||
|
||
txConfigOpts tx.ConfigOptions | ||
autoCliOpts autocli.AppOptions | ||
ModuleBasicManager module.BasicManager | ||
ClientCtx client.Context | ||
) | ||
|
||
func Initialize() { | ||
cfg := sdk.GetConfig() | ||
cfg.SetBech32PrefixForAccount(Bech32PrefixAccAddr, Bech32PrefixAccPub) | ||
cfg.SetBech32PrefixForValidator(Bech32PrefixValAddr, Bech32PrefixValPub) | ||
cfg.SetBech32PrefixForConsensusNode(Bech32PrefixConsAddr, Bech32PrefixConsPub) | ||
cfg.Seal() | ||
|
||
if err := depinject.Inject( | ||
depinject.Configs(noble.AppConfig(), | ||
depinject.Supply( | ||
log.NewNopLogger(), | ||
), | ||
depinject.Provide( | ||
ProvideClientContext, | ||
ProvideKeyring, | ||
), | ||
), | ||
&txConfigOpts, | ||
&autoCliOpts, | ||
&ModuleBasicManager, | ||
&ClientCtx, | ||
); err != nil { | ||
panic(err) | ||
} | ||
|
||
// Since the IBC modules don't support dependency injection, we need to | ||
// manually register the modules on the client side. | ||
// This needs to be removed after IBC supports App Wiring. | ||
modules := map[string]appmodule.AppModule{ | ||
capabilitytypes.ModuleName: capability.AppModule{}, | ||
ibcexported.ModuleName: ibc.AppModule{}, | ||
icatypes.ModuleName: ica.AppModule{}, | ||
pfmtypes.ModuleName: pfm.AppModule{}, | ||
transfertypes.ModuleName: transfer.AppModule{}, | ||
tmclient.ModuleName: tmclient.AppModule{}, | ||
soloclient.ModuleName: soloclient.AppModule{}, | ||
} | ||
for name, mod := range modules { | ||
ModuleBasicManager[name] = module.CoreAppModuleBasicAdaptor(name, mod) | ||
ModuleBasicManager[name].RegisterInterfaces(ClientCtx.InterfaceRegistry) | ||
autoCliOpts.Modules[name] = mod | ||
} | ||
} | ||
|
||
func ProvideClientContext( | ||
appCodec codec.Codec, | ||
interfaceRegistry codectypes.InterfaceRegistry, | ||
txConfig client.TxConfig, | ||
legacyAmino *codec.LegacyAmino, | ||
) client.Context { | ||
clientCtx := client.Context{}. | ||
WithCodec(appCodec). | ||
WithInterfaceRegistry(interfaceRegistry). | ||
WithTxConfig(txConfig). | ||
WithLegacyAmino(legacyAmino). | ||
WithInput(os.Stdin). | ||
WithAccountRetriever(types.AccountRetriever{}). | ||
WithHomeDir(noble.DefaultNodeHome). | ||
WithViper("") // env variable prefix | ||
|
||
// Read the config again to overwrite the default values with the values from the config file | ||
clientCtx, _ = config.ReadFromClientConfig(clientCtx) | ||
|
||
return clientCtx | ||
} | ||
|
||
func ProvideKeyring(clientCtx client.Context, addressCodec address.Codec) (clientv2keyring.Keyring, error) { | ||
kb, err := client.NewKeyringFromBackend(clientCtx, clientCtx.Keyring.Backend()) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
return keyring.NewAutoCLIKeyring(kb) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.