Documentation
¶
Index ¶
- Variables
- func NewCleanProposal(cleaner yta.AccountName, proposalName yta.Name, maxCount uint64) *yta.Action
- func NewExpire(proposer yta.AccountName, proposalName yta.Name) *yta.Action
- func NewPost(poster yta.AccountName, postUUID, content string, ...) *yta.Action
- func NewPropose(proposer yta.AccountName, proposalName yta.Name, title string, ...) *yta.Action
- func NewStatus(account yta.AccountName, content string) *yta.Action
- func NewUnPost(poster yta.AccountName, postUUID string) *yta.Action
- func NewUnVote(voter yta.AccountName, proposalName yta.Name) *yta.Action
- func NewVote(voter yta.AccountName, proposalName yta.Name, voteValue uint8, voteJSON string) *yta.Action
- type CleanProposal
- type Expire
- type Post
- type Propose
- type Status
- type UnPost
- type UnVote
- type Vote
Constants ¶
This section is empty.
Variables ¶
View Source
var AN = yta.AN
View Source
var ActN = yta.ActN
View Source
var ForumAN = AN("eosio.forum")
View Source
var PN = yta.PN
Functions ¶
func NewCleanProposal ¶
CleanProposal is an action to flush proposal and allow RAM used by it.
func NewPost ¶
func NewPost(poster yta.AccountName, postUUID, content string, replyToPoster yta.AccountName, replyToPostUUID string, certify bool, jsonMetadata string) *yta.Action
NewPost is an action representing a simple message to be posted through the chain network.
func NewPropose ¶
func NewPropose(proposer yta.AccountName, proposalName yta.Name, title string, proposalJSON string, expiresAt yta.JSONTime) *yta.Action
NewPropose is an action to submit a proposal for vote.
func NewStatus ¶
func NewStatus(account yta.AccountName, content string) *yta.Action
Status is an action to set a status update for a given account on the forum contract.
func NewUnPost ¶
func NewUnPost(poster yta.AccountName, postUUID string) *yta.Action
NewUnPost is an action undoing a post that is active
Types ¶
type CleanProposal ¶
type CleanProposal struct {
ProposalName yta.Name `json:"proposal_name"`
MaxCount uint64 `json:"max_count"`
}
CleanProposal represents the `eosio.forum::clnproposal` action.
type Post ¶
type Post struct {
Poster yta.AccountName `json:"poster"`
PostUUID string `json:"post_uuid"`
Content string `json:"content"`
ReplyToPoster yta.AccountName `json:"reply_to_poster"`
ReplyToPostUUID string `json:"reply_to_post_uuid"`
Certify bool `json:"certify"`
JSONMetadata string `json:"json_metadata"`
}
Post represents the `eosio.forum::post` action.
type Propose ¶
type Propose struct {
Proposer yta.AccountName `json:"proposer"`
ProposalName yta.Name `json:"proposal_name"`
Title string `json:"title"`
ProposalJSON string `json:"proposal_json"`
ExpiresAt yta.JSONTime `json:"expires_at"`
}
Propose represents the `eosio.forum::propose` action.
type Status ¶
type Status struct {
Account yta.AccountName `json:"account_name"`
Content string `json:"content"`
}
Status represents the `eosio.forum::status` action.
type UnPost ¶
type UnPost struct {
Poster yta.AccountName `json:"poster"`
PostUUID string `json:"post_uuid"`
}
UnPost represents the `eosio.forum::unpost` action.
Click to show internal directories.
Click to hide internal directories.