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
11 changes: 7 additions & 4 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
paramproposal "github.com/cosmos/cosmos-sdk/x/params/types/proposal"

sdkmempool "github.com/cosmos/cosmos-sdk/types/mempool"
evmmempool "github.com/cosmos/evm/mempool"

Check failure on line 29 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.4: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:

evmante "github.com/cosmos/evm/ante"

Check failure on line 31 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.4: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:

antetypes "github.com/cosmos/evm/ante/types"

Check failure on line 33 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.4: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
evmaddress "github.com/cosmos/evm/encoding/address"

Check failure on line 34 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.4: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
precompiletypes "github.com/cosmos/evm/precompiles/types"

Check failure on line 35 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.4: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:

cosmosevmutils "github.com/cosmos/evm/utils"

Check failure on line 37 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.4: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
"github.com/cosmos/gogoproto/proto"
ratelimit "github.com/cosmos/ibc-apps/modules/rate-limiting/v10"
ratelimittypes "github.com/cosmos/ibc-apps/modules/rate-limiting/v10/types"
Expand Down Expand Up @@ -127,9 +127,9 @@
poakeeper "github.com/xrplevm/node/v10/x/poa/keeper"
poatypes "github.com/xrplevm/node/v10/x/poa/types"

srvflags "github.com/cosmos/evm/server/flags"

Check failure on line 130 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.4: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:

"github.com/cosmos/evm/x/erc20"

Check failure on line 132 in app/app.go

View workflow job for this annotation

GitHub Actions / Unit test

reading github.com/xrplevm/evm-sec-papyrus/go.mod at revision v0.6.0-xrplevm.4: git ls-remote -q --end-of-options origin in /home/runner/go/pkg/mod/cache/vcs/309b036b711ba3cc8cc7109a6825e2736dd4840eb573adc8a35780d827e13dee: exit status 128:
erc20keeper "github.com/cosmos/evm/x/erc20/keeper"
erc20types "github.com/cosmos/evm/x/erc20/types"
"github.com/cosmos/evm/x/feemarket"
Expand Down Expand Up @@ -491,7 +491,12 @@
app.SlashingKeeper,
appCodec,
),
)
).WithDefaultEvmCoinInfo(evmtypes.EvmCoinInfo{
Denom: BaseDenom,
ExtendedDenom: BaseDenom,
DisplayDenom: Denom,
Decimals: 18,
})

// ERC20 Keeper
app.Erc20Keeper = erc20keeper.NewKeeper(
Expand Down Expand Up @@ -572,9 +577,7 @@
govKeeper.SetLegacyRouter(govRouter)

app.GovKeeper = *govKeeper.SetHooks(
govtypes.NewMultiGovHooks(
// register the governance hooks
),
govtypes.NewMultiGovHooks(),
)

/**** IBC Routing ****/
Expand Down
Loading
Loading