types

package
v1.0.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 18, 2024 License: GPL-3.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const (
	CodeNoAccountCreated sdk.CodeType = 2000
	CodeNoPermission     sdk.CodeType = 2001
)

supply errors reserve 2000 ~ 2100.

View Source
const (
	// ModuleName is the name of the module
	ModuleName = "supply"

	// StoreKey is the store key string for supply
	StoreKey = ModuleName

	// RouterKey is the message route for supply
	RouterKey = ModuleName

	// QuerierRoute is the querier route for supply
	QuerierRoute = ModuleName

	// DefaultParamspace default name for parameter store
	DefaultParamspace = ModuleName

	// DefaultCodespace code space
	DefaultCodespace sdk.CodespaceType = ModuleName
)
View Source
const (
	Minter  = "minter"
	Burner  = "burner"
	Staking = "staking"
)

permissions

View Source
const (
	QueryTotalSupply = "total_supply"
	QuerySupplyOf    = "supply_of"
)

query endpoints supported by the supply Querier

Variables

View Source
var ModuleCdc *codec.Codec

ModuleCdc generic sealed codec to be used throughout module

Functions

func AccountProcessor

AccountProcessor process supply's module account

func ErrNoAccountCreated

func ErrNoAccountCreated(codespace sdk.CodespaceType) sdk.Error

ErrNoAccountCreated is an error

func ErrNoPermission

func ErrNoPermission(codespace sdk.CodespaceType) sdk.Error

ErrNoPermission is an error

func NewModuleAddress

func NewModuleAddress(name string) types.HeimdallAddress

NewModuleAddress creates an AccAddress from the hash of the module's name

func RegisterCodec

func RegisterCodec(cdc *codec.Codec)

RegisterCodec registers the account types and interface

func ValidateGenesis

func ValidateGenesis(data GenesisState) error

ValidateGenesis performs basic validation of supply genesis data returning an error for any failed validation criteria.

Types

type GenesisState

type GenesisState struct {
	Supply Supply `json:"supply" yaml:"supply"`
}

GenesisState is the supply state that must be provided at genesis.

func DefaultGenesisState

func DefaultGenesisState() GenesisState

DefaultGenesisState returns a default genesis state

func NewGenesisState

func NewGenesisState(supply Supply) GenesisState

NewGenesisState creates a new genesis state.

type ModuleAccount

type ModuleAccount struct {
	*authTypes.BaseAccount

	Name        string   `json:"name" yaml:"name"`               // name of the module
	Permissions []string `json:"permissions" yaml:"permissions"` // permissions of module account
}

ModuleAccount defines an account for modules that holds coins on a pool

func NewEmptyModuleAccount

func NewEmptyModuleAccount(name string, permissions ...string) *ModuleAccount

NewEmptyModuleAccount creates empty module account

func NewModuleAccount

func NewModuleAccount(ba *authTypes.BaseAccount, name string, permissions ...string) *ModuleAccount

NewModuleAccount creates a new ModuleAccount instance

func (*ModuleAccount) AddPermissions

func (ma *ModuleAccount) AddPermissions(permissions ...string)

AddPermissions adds the permissions to the module account's list of granted permissions.

func (ModuleAccount) GetName

func (ma ModuleAccount) GetName() string

GetName returns the the name of the holder's module

func (ModuleAccount) GetPermissions

func (ma ModuleAccount) GetPermissions() []string

GetPermissions returns permissions granted to the module account

func (ModuleAccount) HasPermission

func (ma ModuleAccount) HasPermission(permission string) bool

HasPermission returns whether or not the module account has permission.

func (ModuleAccount) MarshalYAML

func (ma ModuleAccount) MarshalYAML() (interface{}, error)

MarshalYAML returns the YAML representation of a ModuleAccount.

func (*ModuleAccount) RemovePermission

func (ma *ModuleAccount) RemovePermission(permission string) error

RemovePermission removes the permission from the list of granted permissions or returns an error if the permission is has not been granted.

func (ModuleAccount) SetPubKey

func (ma ModuleAccount) SetPubKey(pubKey crypto.PubKey) error

SetPubKey - Implements Account

func (ModuleAccount) SetSequence

func (ma ModuleAccount) SetSequence(seq uint64) error

SetSequence - Implements Account

func (ModuleAccount) String

func (ma ModuleAccount) String() string

String follows stringer interface

type ModuleAccountInterface

type ModuleAccountInterface = exported.ModuleAccountI

ModuleAccountInterface exported module account interface

type PermissionsForAddress

type PermissionsForAddress struct {
	// contains filtered or unexported fields
}

PermissionsForAddress defines all the registered permissions for an address

func NewPermissionsForAddress

func NewPermissionsForAddress(name string, permissions []string) PermissionsForAddress

NewPermissionsForAddress creates a new PermissionsForAddress object

func (PermissionsForAddress) GetAddress

GetAddress returns the address of the PermissionsForAddress object

func (PermissionsForAddress) GetPermissions

func (pa PermissionsForAddress) GetPermissions() []string

GetPermissions returns the permissions granted to the address

func (PermissionsForAddress) HasPermission

func (pa PermissionsForAddress) HasPermission(permission string) bool

HasPermission returns whether the PermissionsForAddress contains permission.

type QuerySupplyOfParams

type QuerySupplyOfParams struct {
	Denom string
}

QuerySupplyOfParams defines the params for the following queries:

- 'custom/supply/totalSupplyOf'

func NewQuerySupplyOfParams

func NewQuerySupplyOfParams(denom string) QuerySupplyOfParams

NewQuerySupplyOfParams creates a new instance to query the total supply of a given denomination

type QueryTotalSupplyParams

type QueryTotalSupplyParams struct {
	Page, Limit int
}

QueryTotalSupply defines the params for the following queries:

- 'custom/supply/totalSupply'

func NewQueryTotalSupplyParams

func NewQueryTotalSupplyParams(page, limit int) QueryTotalSupplyParams

NewQueryTotalSupplyParams creates a new instance to query the total supply

type Supply

type Supply struct {
	Total sdk.Coins `json:"total" yaml:"total"` // total supply of tokens registered on the chain
}

Supply represents a struct that passively keeps track of the total supply amounts in the network

func DefaultSupply

func DefaultSupply() Supply

DefaultSupply creates an empty Supply

func NewSupply

func NewSupply(total sdk.Coins) Supply

NewSupply creates a new Supply instance

func (*Supply) Deflate

func (supply *Supply) Deflate(amount sdk.Coins)

Deflate subtracts coins from the total supply

func (*Supply) Inflate

func (supply *Supply) Inflate(amount sdk.Coins)

Inflate adds coins to the total supply

func (Supply) String

func (supply Supply) String() string

String returns a human readable string representation of a supplier.

func (Supply) ValidateBasic

func (supply Supply) ValidateBasic() error

ValidateBasic validates the Supply coins and returns error if invalid

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL