Skip to content

Commit

Permalink
feat(accounts): re-introduce bundler (#21562)
Browse files Browse the repository at this point in the history
(cherry picked from commit ec63f94)

# Conflicts:
#	api/cosmos/accounts/interfaces/account_abstraction/v1/interface.pulsar.go
#	api/cosmos/accounts/v1/tx.pulsar.go
#	x/accounts/README.md
#	x/accounts/go.mod
#	x/tx/go.mod
#	x/tx/go.sum
  • Loading branch information
testinginprod authored and mergify[bot] committed Oct 25, 2024
1 parent eefb4c5 commit a9bacf3
Show file tree
Hide file tree
Showing 26 changed files with 9,840 additions and 232 deletions.
17 changes: 17 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,23 @@ if err != nil {
}
```

##### TX Decoder

In order to support x/accounts properly we need to init a `TxDecoder`, modify your `app.go`:

```diff
import (
+ txdecode "cosmossdk.io/x/tx/decode"
)
+ txDecoder, err := txdecode.NewDecoder(txdecode.Options{
+ SigningContext: signingCtx,
+ ProtoCodec: appCodec,
+ })
+ if err != nil {
+ panic(err)
+ }
```

#### `x/crisis`

The `x/crisis` module was removed due to it not being supported or functional any longer.
Expand Down
2,923 changes: 2,923 additions & 0 deletions api/cosmos/accounts/interfaces/account_abstraction/v1/interface.pulsar.go

Large diffs are not rendered by default.

Loading

0 comments on commit a9bacf3

Please sign in to comment.