Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Do not merge] Burn token #166

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 2 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ import (
v1_1_1 "github.com/onomyprotocol/onomy/app/upgrades/v1.1.1"
v1_1_2 "github.com/onomyprotocol/onomy/app/upgrades/v1.1.2"
v1_1_4 "github.com/onomyprotocol/onomy/app/upgrades/v1.1.4"
v1_1_5 "github.com/onomyprotocol/onomy/app/upgrades/v1.1.5"
"github.com/onomyprotocol/onomy/docs"
"github.com/onomyprotocol/onomy/x/dao"
daoclient "github.com/onomyprotocol/onomy/x/dao/client"
Expand Down Expand Up @@ -819,6 +820,7 @@ func (app *OnomyApp) setupUpgradeHandlers() {
)
app.UpgradeKeeper.SetUpgradeHandler(v1_1_2.Name, v1_1_2.UpgradeHandler)
app.UpgradeKeeper.SetUpgradeHandler(v1_1_4.Name, v1_1_4.UpgradeHandler)
app.UpgradeKeeper.SetUpgradeHandler(v1_1_5.Name, v1_1_5.CreateUpgradeHandler(app.mm, app.configurator, &app.AccountKeeper, &app.BankKeeper, &app.StakingKeeper))

upgradeInfo, err := app.UpgradeKeeper.ReadUpgradeInfoFromDisk()
if err != nil {
Expand Down
148 changes: 148 additions & 0 deletions app/upgrades/v1.1.5/upgrade.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,148 @@
// Package v1_1_5 is contains chain upgrade of the corresponding version.
package v1_1_5 //nolint:revive,stylecheck // app version

import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
vesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

daotypes "github.com/onomyprotocol/onomy/x/dao/types"
)

// Name is migration name.
const Name = "v1.1.5"

var burntAddrs = []string{
"onomy1302z68lkj2qa4c9qxh387pr973k8ulvj6880vu",
"onomy1ttm9jz0zlr9gtwf3j33a57jsk6lx0yeejzy6ek",
"onomy1x6mlfjektdjgum6hfgfgcz57dl4s9dss59tmjy",
}

func CreateUpgradeHandler(
mm *module.Manager,
configurator module.Configurator,
ak *authkeeper.AccountKeeper,
bk *bankkeeper.BaseKeeper,
sk *stakingkeeper.Keeper,
) upgradetypes.UpgradeHandler {
return func(ctx sdk.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
for _, addr := range burntAddrs {
// get target account
account := ak.GetAccount(ctx, sdk.MustAccAddressFromBech32(addr))

// check that it's a vesting account type
continousVestAccount, ok := account.(*vesting.ContinuousVestingAccount)
if ok {
// overwrite vest account to a normal base account
ak.SetAccount(ctx, continousVestAccount.BaseAccount)
}

periodicVestAccount, ok := account.(*vesting.PeriodicVestingAccount)
if ok {
// overwrite vest account to a normal base account
ak.SetAccount(ctx, periodicVestAccount.BaseAccount)
}

delayedVestAccount, ok := account.(*vesting.DelayedVestingAccount)
if ok {
// overwrite vest account to a normal base account
ak.SetAccount(ctx, delayedVestAccount.BaseAccount)
}

permanentLockedAccount, ok := account.(*vesting.PermanentLockedAccount)
if ok {
// overwrite vest account to a normal base account
ak.SetAccount(ctx, permanentLockedAccount.BaseAccount)
}

// unbond all delegations from account
err := forceUnbondTokens(ctx, addr, bk, sk)
if err != nil {
ctx.Logger().Error("Error force unbonding delegations")
return nil, err
}

// finish all current unbonding entries
err = forceFinishUnbonding(ctx, addr, bk, sk)
if err != nil {
ctx.Logger().Error("Error force finishing unbonding delegations")
return nil, err
}

// send to dao module account
// vesting account should be able to send coins normaly after
// we converted it back to a base account
bal := bk.GetAllBalances(ctx, sdk.MustAccAddressFromBech32(addr))
err = bk.SendCoinsFromAccountToModule(ctx, sdk.MustAccAddressFromBech32(addr), daotypes.ModuleName, bal)
if err != nil {
ctx.Logger().Error("Error reallocating funds")
return nil, err
}
}
ctx.Logger().Info("Finished reallocating funds")

return mm.RunMigrations(ctx, configurator, vm)
}
}

func forceFinishUnbonding(ctx sdk.Context, delAddr string, bk *bankkeeper.BaseKeeper, sk *stakingkeeper.Keeper) error {
ubdQueue := sk.GetAllUnbondingDelegations(ctx, sdk.MustAccAddressFromBech32(delAddr))
bondDenom := sk.BondDenom(ctx)

for _, ubd := range ubdQueue {
for _, entry := range ubd.Entries {
err := bk.UndelegateCoinsFromModuleToAccount(ctx, stakingtypes.NotBondedPoolName, sdk.MustAccAddressFromBech32(delAddr), sdk.NewCoins(sdk.NewCoin(bondDenom, entry.Balance)))
if err != nil {
return err
}
}

// empty out all entries
ubd.Entries = []stakingtypes.UnbondingDelegationEntry{}
sk.SetUnbondingDelegation(ctx, ubd)
}

return nil
}

func forceUnbondTokens(ctx sdk.Context, delAddr string, bk *bankkeeper.BaseKeeper, sk *stakingkeeper.Keeper) error {
delAccAddr := sdk.MustAccAddressFromBech32(delAddr)
dels := sk.GetDelegatorDelegations(ctx, delAccAddr, 100)

for _, del := range dels {
valAddr := del.GetValidatorAddr()

validator, found := sk.GetValidator(ctx, valAddr)
if !found {
return stakingtypes.ErrNoValidatorFound
}

returnAmount, err := sk.Unbond(ctx, delAccAddr, valAddr, del.GetShares())
if err != nil {
return err
}

coins := sdk.NewCoins(sdk.NewCoin(sk.BondDenom(ctx), returnAmount))

// transfer the validator tokens to the not bonded pool
if validator.IsBonded() {
// doing stakingKeeper.bondedTokensToNotBonded
err = bk.SendCoinsFromModuleToModule(ctx, stakingtypes.BondedPoolName, stakingtypes.NotBondedPoolName, coins)
if err != nil {
return err
}
}

err = bk.UndelegateCoinsFromModuleToAccount(ctx, stakingtypes.NotBondedPoolName, delAccAddr, coins)
if err != nil {
return err
}
}

return nil
}