mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
82e2f26e14
* Add query methods * Add TotalDeposited rpc query * All accounts and all denoms query wip * Add query deposits * Remove IsDenomSupported strategy method This is not necessary and is already set in params allowed vaults * Add Vaults, TotalDeposited queries * Deposits query tests and fixes * proto lints * Add earn swagger docs * Add cli query cmds * Update init-new-chain.sh with usdx strategy and funds * Add denom url query path for vaults * Return a list of coins for each depositor instead of multiple deposit entries
77 lines
2.1 KiB
Go
77 lines
2.1 KiB
Go
package keeper
|
|
|
|
import (
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/kava-labs/kava/x/earn/types"
|
|
)
|
|
|
|
// Deposit adds the provided amount from a depositor to a vault. The vault is
|
|
// specified by the denom in the amount.
|
|
func (k *Keeper) Deposit(ctx sdk.Context, depositor sdk.AccAddress, amount sdk.Coin) error {
|
|
// Get AllowedVault, if not found (not a valid vault), return error
|
|
allowedVault, found := k.GetAllowedVault(ctx, amount.Denom)
|
|
if !found {
|
|
return types.ErrInvalidVaultDenom
|
|
}
|
|
|
|
if amount.IsZero() {
|
|
return types.ErrInsufficientAmount
|
|
}
|
|
|
|
// Check if VaultRecord exists, create if not exist
|
|
vaultRecord, found := k.GetVaultRecord(ctx, amount.Denom)
|
|
if !found {
|
|
// Create a new VaultRecord with 0 supply
|
|
vaultRecord = types.NewVaultRecord(amount.Denom)
|
|
}
|
|
|
|
// Get the strategy for the vault
|
|
strategy, err := k.GetStrategy(allowedVault.VaultStrategy)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// Transfer amount to module account
|
|
if err := k.bankKeeper.SendCoinsFromAccountToModule(
|
|
ctx,
|
|
depositor,
|
|
types.ModuleName,
|
|
sdk.NewCoins(amount),
|
|
); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Get VaultShareRecord for account, create if not exist
|
|
vaultShareRecord, found := k.GetVaultShareRecord(ctx, depositor)
|
|
if !found {
|
|
// Create a new empty VaultShareRecord with 0 supply
|
|
vaultShareRecord = types.NewVaultShareRecord(depositor)
|
|
}
|
|
|
|
// Increment VaultRecord supply
|
|
vaultRecord.TotalSupply = vaultRecord.TotalSupply.Add(amount)
|
|
|
|
// Increment VaultShareRecord supply
|
|
vaultShareRecord.AmountSupplied = vaultShareRecord.AmountSupplied.Add(amount)
|
|
|
|
// Update VaultRecord and VaultShareRecord
|
|
k.SetVaultRecord(ctx, vaultRecord)
|
|
k.SetVaultShareRecord(ctx, vaultShareRecord)
|
|
|
|
// Deposit to the strategy
|
|
if err := strategy.Deposit(ctx, amount); err != nil {
|
|
return err
|
|
}
|
|
|
|
ctx.EventManager().EmitEvent(
|
|
sdk.NewEvent(
|
|
types.EventTypeVaultDeposit,
|
|
sdk.NewAttribute(types.AttributeKeyVaultDenom, amount.Denom),
|
|
sdk.NewAttribute(types.AttributeKeyDepositor, depositor.String()),
|
|
sdk.NewAttribute(sdk.AttributeKeyAmount, amount.Amount.String()),
|
|
),
|
|
)
|
|
|
|
return nil
|
|
}
|