2021-09-03 15:43:43 -07:00
|
|
|
package token
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2021-09-04 08:41:00 -07:00
|
|
|
"fmt"
|
|
|
|
|
2021-09-04 07:51:19 -07:00
|
|
|
ag_binary "github.com/gagliardetto/binary"
|
2021-09-03 15:43:43 -07:00
|
|
|
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.
|
2021-09-04 08:41:00 -07:00
|
|
|
Accounts ag_solanago.AccountMetaSlice `bin:"-" borsh_skip:"true"`
|
|
|
|
Signers ag_solanago.AccountMetaSlice `bin:"-" borsh_skip:"true"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (obj *InitializeMultisig2) SetAccounts(accounts []*ag_solanago.AccountMeta) error {
|
|
|
|
obj.Accounts, obj.Signers = ag_solanago.AccountMetaSlice(accounts).SplitFrom(1)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (slice InitializeMultisig2) GetAccounts() (accounts []*ag_solanago.AccountMeta) {
|
|
|
|
accounts = append(accounts, slice.Accounts...)
|
|
|
|
accounts = append(accounts, slice.Signers...)
|
|
|
|
return
|
2021-09-03 15:43:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewInitializeMultisig2InstructionBuilder creates a new `InitializeMultisig2` instruction builder.
|
|
|
|
func NewInitializeMultisig2InstructionBuilder() *InitializeMultisig2 {
|
|
|
|
nd := &InitializeMultisig2{
|
2021-09-04 08:41:00 -07:00
|
|
|
Accounts: make(ag_solanago.AccountMetaSlice, 1),
|
|
|
|
Signers: make(ag_solanago.AccountMetaSlice, 0),
|
2021-09-03 15:43:43 -07:00
|
|
|
}
|
|
|
|
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 {
|
2021-09-04 08:41:00 -07:00
|
|
|
inst.Accounts[0] = ag_solanago.Meta(account).WRITE()
|
2021-09-03 15:43:43 -07:00
|
|
|
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 {
|
2021-09-04 08:41:00 -07:00
|
|
|
return inst.Accounts[0]
|
2021-09-03 15:43:43 -07:00
|
|
|
}
|
|
|
|
|
2021-09-04 08:41:00 -07:00
|
|
|
// AddSigners adds the "signers" accounts.
|
2021-09-03 15:43:43 -07:00
|
|
|
// The signer accounts, must equal to N where 1 <= N <= 11.
|
2021-09-04 08:41:00 -07:00
|
|
|
func (inst *InitializeMultisig2) AddSigners(signers ...ag_solanago.PublicKey) *InitializeMultisig2 {
|
|
|
|
for _, signer := range signers {
|
|
|
|
inst.Signers = append(inst.Signers, ag_solanago.Meta(signer).SIGNER())
|
|
|
|
}
|
2021-09-03 15:43:43 -07:00
|
|
|
return inst
|
|
|
|
}
|
|
|
|
|
|
|
|
func (inst InitializeMultisig2) Build() *Instruction {
|
|
|
|
return &Instruction{BaseVariant: ag_binary.BaseVariant{
|
|
|
|
Impl: inst,
|
2021-09-04 15:25:15 -07:00
|
|
|
TypeID: ag_binary.TypeIDFromUint8(Instruction_InitializeMultisig2),
|
2021-09-03 15:43:43 -07:00
|
|
|
}}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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:
|
|
|
|
{
|
2021-09-04 08:41:00 -07:00
|
|
|
if inst.Accounts[0] == nil {
|
2021-09-04 07:51:19 -07:00
|
|
|
return errors.New("accounts.Account is not set")
|
2021-09-03 15:43:43 -07:00
|
|
|
}
|
2021-09-04 08:41:00 -07:00
|
|
|
if len(inst.Signers) == 0 {
|
|
|
|
return fmt.Errorf("accounts.Signers is not set")
|
|
|
|
}
|
|
|
|
if len(inst.Signers) > MAX_SIGNERS {
|
|
|
|
return fmt.Errorf("too many signers; got %v, but max is 11", len(inst.Signers))
|
2021-09-03 15:43:43 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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) {
|
2021-09-04 08:41:00 -07:00
|
|
|
accountsBranch.Child(ag_format.Meta("account", inst.Accounts[0]))
|
|
|
|
|
|
|
|
signersBranch := accountsBranch.Child(fmt.Sprintf("signers[len=%v]", len(inst.Signers)))
|
|
|
|
for i, v := range inst.Signers {
|
2021-09-06 05:00:09 -07:00
|
|
|
if len(inst.Signers) > 9 && i < 10 {
|
|
|
|
signersBranch.Child(ag_format.Meta(fmt.Sprintf(" [%v]", i), v))
|
|
|
|
} else {
|
|
|
|
signersBranch.Child(ag_format.Meta(fmt.Sprintf("[%v]", i), v))
|
|
|
|
}
|
2021-09-04 08:41:00 -07:00
|
|
|
}
|
2021-09-03 15:43:43 -07:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
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,
|
2021-09-04 08:41:00 -07:00
|
|
|
signers []ag_solanago.PublicKey,
|
|
|
|
) *InitializeMultisig2 {
|
2021-09-03 15:43:43 -07:00
|
|
|
return NewInitializeMultisig2InstructionBuilder().
|
|
|
|
SetM(m).
|
|
|
|
SetAccount(account).
|
2021-09-04 08:41:00 -07:00
|
|
|
AddSigners(signers...)
|
2021-09-03 15:43:43 -07:00
|
|
|
}
|