solana-go/programs/token/InitializeMultisig2.go

155 lines
4.7 KiB
Go
Raw Normal View History

2021-09-03 15:43:43 -07:00
package token
import (
"encoding/binary"
"errors"
"fmt"
ag_binary "github.com/dfuse-io/binary"
ag_solanago "github.com/gagliardetto/solana-go"
ag_format "github.com/gagliardetto/solana-go/text/format"
ag_treeout "github.com/gagliardetto/treeout"
)
// Like InitializeMultisig, but does not require the Rent sysvar to be provided.
type InitializeMultisig2 struct {
// The number of signers (M) required to validate this multisignature account.
M *uint8
// [0] = [WRITE] account
// ··········· The multisignature account to initialize.
//
// [1] = [SIGNER] signers
// ··········· The signer accounts, must equal to N where 1 <= N <= 11.
ag_solanago.AccountMetaSlice `bin:"-" borsh_skip:"true"`
}
// NewInitializeMultisig2InstructionBuilder creates a new `InitializeMultisig2` instruction builder.
func NewInitializeMultisig2InstructionBuilder() *InitializeMultisig2 {
nd := &InitializeMultisig2{
AccountMetaSlice: make(ag_solanago.AccountMetaSlice, 2),
}
return nd
}
2021-09-03 16:55:23 -07:00
// SetM sets the "m" parameter.
2021-09-03 15:43:43 -07:00
// The number of signers (M) required to validate this multisignature account.
func (inst *InitializeMultisig2) SetM(m uint8) *InitializeMultisig2 {
inst.M = &m
return inst
}
2021-09-03 16:55:23 -07:00
// SetAccount sets the "account" account.
2021-09-03 15:43:43 -07:00
// The multisignature account to initialize.
func (inst *InitializeMultisig2) SetAccount(account ag_solanago.PublicKey) *InitializeMultisig2 {
inst.AccountMetaSlice[0] = ag_solanago.Meta(account).WRITE()
return inst
}
2021-09-03 16:55:23 -07:00
// GetAccount gets the "account" account.
// The multisignature account to initialize.
2021-09-03 15:43:43 -07:00
func (inst *InitializeMultisig2) GetAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice[0]
}
2021-09-03 16:55:23 -07:00
// SetSignersAccount sets the "signers" account.
2021-09-03 15:43:43 -07:00
// The signer accounts, must equal to N where 1 <= N <= 11.
func (inst *InitializeMultisig2) SetSignersAccount(signers ag_solanago.PublicKey) *InitializeMultisig2 {
inst.AccountMetaSlice[1] = ag_solanago.Meta(signers).SIGNER()
return inst
}
2021-09-03 16:55:23 -07:00
// GetSignersAccount gets the "signers" account.
// The signer accounts, must equal to N where 1 <= N <= 11.
2021-09-03 15:43:43 -07:00
func (inst *InitializeMultisig2) GetSignersAccount() *ag_solanago.AccountMeta {
return inst.AccountMetaSlice[1]
}
func (inst InitializeMultisig2) Build() *Instruction {
return &Instruction{BaseVariant: ag_binary.BaseVariant{
Impl: inst,
TypeID: ag_binary.TypeIDFromUint32(Instruction_InitializeMultisig2, binary.LittleEndian),
}}
}
// ValidateAndBuild validates the instruction parameters and accounts;
// if there is a validation error, it returns the error.
// Otherwise, it builds and returns the instruction.
func (inst InitializeMultisig2) ValidateAndBuild() (*Instruction, error) {
if err := inst.Validate(); err != nil {
return nil, err
}
return inst.Build(), nil
}
func (inst *InitializeMultisig2) Validate() error {
// Check whether all (required) parameters are set:
{
if inst.M == nil {
return errors.New("M parameter is not set")
}
}
// Check whether all (required) accounts are set:
{
if inst.AccountMetaSlice[0] == nil {
return fmt.Errorf("accounts.Account is not set")
}
if inst.AccountMetaSlice[1] == nil {
return fmt.Errorf("accounts.Signers is not set")
}
}
return nil
}
func (inst *InitializeMultisig2) EncodeToTree(parent ag_treeout.Branches) {
parent.Child(ag_format.Program(ProgramName, ProgramID)).
//
ParentFunc(func(programBranch ag_treeout.Branches) {
programBranch.Child(ag_format.Instruction("InitializeMultisig2")).
//
ParentFunc(func(instructionBranch ag_treeout.Branches) {
// Parameters of the instruction:
instructionBranch.Child("Params").ParentFunc(func(paramsBranch ag_treeout.Branches) {
paramsBranch.Child(ag_format.Param("M", *inst.M))
})
// Accounts of the instruction:
instructionBranch.Child("Accounts").ParentFunc(func(accountsBranch ag_treeout.Branches) {
accountsBranch.Child(ag_format.Meta("account", inst.AccountMetaSlice[0]))
accountsBranch.Child(ag_format.Meta("signers", inst.AccountMetaSlice[1]))
})
})
})
}
func (obj InitializeMultisig2) MarshalWithEncoder(encoder *ag_binary.Encoder) (err error) {
// Serialize `M` param:
err = encoder.Encode(obj.M)
if err != nil {
return err
}
return nil
}
func (obj *InitializeMultisig2) UnmarshalWithDecoder(decoder *ag_binary.Decoder) (err error) {
// Deserialize `M`:
err = decoder.Decode(&obj.M)
if err != nil {
return err
}
return nil
}
// NewInitializeMultisig2Instruction declares a new InitializeMultisig2 instruction with the provided parameters and accounts.
func NewInitializeMultisig2Instruction(
// Parameters:
m uint8,
// Accounts:
account ag_solanago.PublicKey,
signers ag_solanago.PublicKey) *InitializeMultisig2 {
return NewInitializeMultisig2InstructionBuilder().
SetM(m).
SetAccount(account).
SetSignersAccount(signers)
}