Documentation
¶
Index ¶
- Constants
- func MakeTestCodec() *codec.Codec
- func NewQuerier(k Keeper) sdk.Querier
- type Keeper
- func (k Keeper) AddAccountToProjectAccounts(ctx sdk.Context, projectDid did.Did, accountId types.InternalAccountID, ...)
- func (k Keeper) AddProjectWithdrawalTransaction(ctx sdk.Context, projectDid did.Did, info types.WithdrawalInfoDoc)
- func (k Keeper) ClaimExists(ctx sdk.Context, projectDid did.Did, claimId string) bool
- func (k Keeper) CreateNewAccount(ctx sdk.Context, projectDid did.Did, accountId types.InternalAccountID) (exported.Account, error)
- func (k Keeper) GetAccountMap(ctx sdk.Context, projectDid did.Did) types.AccountMap
- func (k Keeper) GetClaim(ctx sdk.Context, projectDid did.Did, claimId string) (types.Claim, error)
- func (k Keeper) GetClaimIterator(ctx sdk.Context, projectDid did.Did) sdk.Iterator
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)
- func (k Keeper) GetProjectDoc(ctx sdk.Context, projectDid did.Did) (types.ProjectDoc, error)
- func (k Keeper) GetProjectDocIterator(ctx sdk.Context) sdk.Iterator
- func (k Keeper) GetProjectWithdrawalTransactions(ctx sdk.Context, projectDid did.Did) ([]types.WithdrawalInfoDoc, error)
- func (k Keeper) MustGetClaimByKey(ctx sdk.Context, key []byte) types.Claim
- func (k Keeper) MustGetProjectDocByKey(ctx sdk.Context, key []byte) types.ProjectDoc
- func (k Keeper) ProjectDocExists(ctx sdk.Context, projectDid did.Did) bool
- func (k Keeper) SetAccountMap(ctx sdk.Context, projectDid did.Did, accountMap types.AccountMap)
- func (k Keeper) SetClaim(ctx sdk.Context, projectDid did.Did, claim types.Claim)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetProjectDoc(ctx sdk.Context, projectDoc types.ProjectDoc)
- func (k Keeper) SetProjectWithdrawalTransactions(ctx sdk.Context, projectDid did.Did, txs []types.WithdrawalInfoDoc)
- func (k Keeper) ValidateProjectFeesMap(ctx sdk.Context, projectFeesMap types.ProjectFeesMap) error
Constants ¶
View Source
const ( QueryProjectDoc = "queryProjectDoc" QueryProjectAccounts = "queryProjectAccounts" QueryProjectTx = "queryProjectTx" QueryParams = "queryParams" )
Variables ¶
This section is empty.
Functions ¶
func MakeTestCodec ¶
func NewQuerier ¶
Types ¶
type Keeper ¶
type Keeper struct { AccountKeeper auth.AccountKeeper DidKeeper did.Keeper // contains filtered or unexported fields }
func CreateTestInput ¶
func (Keeper) AddAccountToProjectAccounts ¶
func (Keeper) AddProjectWithdrawalTransaction ¶
func (Keeper) ClaimExists ¶ added in v0.13.0
func (Keeper) CreateNewAccount ¶
func (Keeper) GetAccountMap ¶
func (Keeper) GetClaimIterator ¶ added in v0.13.0
func (Keeper) GetProjectDoc ¶
func (Keeper) GetProjectDocIterator ¶
func (Keeper) GetProjectWithdrawalTransactions ¶
func (Keeper) MustGetClaimByKey ¶ added in v0.13.0
func (Keeper) MustGetProjectDocByKey ¶
func (Keeper) ProjectDocExists ¶
func (Keeper) SetAccountMap ¶
func (Keeper) SetProjectDoc ¶
func (k Keeper) SetProjectDoc(ctx sdk.Context, projectDoc types.ProjectDoc)
func (Keeper) SetProjectWithdrawalTransactions ¶
func (Keeper) ValidateProjectFeesMap ¶ added in v0.13.0
Click to show internal directories.
Click to hide internal directories.