solana-go/programs/token/ThawAccount.go

199 lines
6.2 KiB
Go
Raw Normal View History

// Copyright 2021 github.com/gagliardetto
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2021-09-03 15:43:43 -07:00
package token
import (
2021-09-04 07:51:19 -07:00
"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"
)
// Thaw a Frozen account using the Mint's freeze_authority (if set).
type ThawAccount struct {
// [0] = [WRITE] account
// ··········· The account to thaw.
//
// [1] = [] mint
// ··········· The token mint.
//
// [2] = [] authority
// ··········· The mint freeze authority.
2021-09-04 08:41:00 -07:00
//
// [3...] = [SIGNER] signers
// ··········· M signer accounts.
Accounts ag_solanago.AccountMetaSlice `bin:"-" borsh_skip:"true"`
Signers ag_solanago.AccountMetaSlice `bin:"-" borsh_skip:"true"`
}
func (obj *ThawAccount) SetAccounts(accounts []*ag_solanago.AccountMeta) error {
obj.Accounts, obj.Signers = ag_solanago.AccountMetaSlice(accounts).SplitFrom(3)
return nil
}
func (slice ThawAccount) GetAccounts() (accounts []*ag_solanago.AccountMeta) {
accounts = append(accounts, slice.Accounts...)
accounts = append(accounts, slice.Signers...)
return
2021-09-03 15:43:43 -07:00
}
// NewThawAccountInstructionBuilder creates a new `ThawAccount` instruction builder.
func NewThawAccountInstructionBuilder() *ThawAccount {
nd := &ThawAccount{
2021-09-04 08:41:00 -07:00
Accounts: make(ag_solanago.AccountMetaSlice, 3),
Signers: make(ag_solanago.AccountMetaSlice, 0),
2021-09-03 15:43:43 -07:00
}
return nd
}
2021-09-03 16:55:23 -07:00
// SetAccount sets the "account" account.
2021-09-03 15:43:43 -07:00
// The account to thaw.
func (inst *ThawAccount) SetAccount(account ag_solanago.PublicKey) *ThawAccount {
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 account to thaw.
2021-09-03 15:43:43 -07:00
func (inst *ThawAccount) 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-03 16:55:23 -07:00
// SetMintAccount sets the "mint" account.
2021-09-03 15:43:43 -07:00
// The token mint.
func (inst *ThawAccount) SetMintAccount(mint ag_solanago.PublicKey) *ThawAccount {
2021-09-04 08:41:00 -07:00
inst.Accounts[1] = ag_solanago.Meta(mint)
2021-09-03 15:43:43 -07:00
return inst
}
2021-09-03 16:55:23 -07:00
// GetMintAccount gets the "mint" account.
// The token mint.
2021-09-03 15:43:43 -07:00
func (inst *ThawAccount) GetMintAccount() *ag_solanago.AccountMeta {
2021-09-04 08:41:00 -07:00
return inst.Accounts[1]
2021-09-03 15:43:43 -07:00
}
2021-09-03 16:55:23 -07:00
// SetAuthorityAccount sets the "authority" account.
2021-09-03 15:43:43 -07:00
// The mint freeze authority.
2021-09-04 08:41:00 -07:00
func (inst *ThawAccount) SetAuthorityAccount(authority ag_solanago.PublicKey, multisigSigners ...ag_solanago.PublicKey) *ThawAccount {
inst.Accounts[2] = ag_solanago.Meta(authority)
if len(multisigSigners) == 0 {
inst.Accounts[2].SIGNER()
}
for _, signer := range multisigSigners {
inst.Signers = append(inst.Signers, ag_solanago.Meta(signer).SIGNER())
}
2021-09-03 15:43:43 -07:00
return inst
}
2021-09-03 16:55:23 -07:00
// GetAuthorityAccount gets the "authority" account.
// The mint freeze authority.
2021-09-03 15:43:43 -07:00
func (inst *ThawAccount) GetAuthorityAccount() *ag_solanago.AccountMeta {
2021-09-04 08:41:00 -07:00
return inst.Accounts[2]
2021-09-03 15:43:43 -07:00
}
func (inst ThawAccount) Build() *Instruction {
return &Instruction{BaseVariant: ag_binary.BaseVariant{
Impl: inst,
2021-09-04 15:25:15 -07:00
TypeID: ag_binary.TypeIDFromUint8(Instruction_ThawAccount),
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 ThawAccount) ValidateAndBuild() (*Instruction, error) {
if err := inst.Validate(); err != nil {
return nil, err
}
return inst.Build(), nil
}
func (inst *ThawAccount) Validate() error {
// 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 inst.Accounts[1] == nil {
2021-09-04 07:51:19 -07:00
return errors.New("accounts.Mint is not set")
2021-09-03 15:43:43 -07:00
}
2021-09-04 08:41:00 -07:00
if inst.Accounts[2] == nil {
2021-09-04 07:51:19 -07:00
return errors.New("accounts.Authority is not set")
2021-09-03 15:43:43 -07:00
}
2021-09-04 08:41:00 -07:00
if !inst.Accounts[2].IsSigner && 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 *ThawAccount) EncodeToTree(parent ag_treeout.Branches) {
parent.Child(ag_format.Program(ProgramName, ProgramID)).
//
ParentFunc(func(programBranch ag_treeout.Branches) {
programBranch.Child(ag_format.Instruction("ThawAccount")).
//
ParentFunc(func(instructionBranch ag_treeout.Branches) {
// Parameters of the instruction:
instructionBranch.Child("Params").ParentFunc(func(paramsBranch ag_treeout.Branches) {})
// Accounts of the instruction:
instructionBranch.Child("Accounts").ParentFunc(func(accountsBranch ag_treeout.Branches) {
accountsBranch.Child(ag_format.Meta(" account", inst.Accounts[0]))
accountsBranch.Child(ag_format.Meta(" mint", inst.Accounts[1]))
2021-09-04 08:41:00 -07:00
accountsBranch.Child(ag_format.Meta("authority", inst.Accounts[2]))
signersBranch := accountsBranch.Child(fmt.Sprintf("signers[len=%v]", len(inst.Signers)))
for i, v := range inst.Signers {
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 ThawAccount) MarshalWithEncoder(encoder *ag_binary.Encoder) (err error) {
return nil
}
func (obj *ThawAccount) UnmarshalWithDecoder(decoder *ag_binary.Decoder) (err error) {
return nil
}
// NewThawAccountInstruction declares a new ThawAccount instruction with the provided parameters and accounts.
func NewThawAccountInstruction(
// Accounts:
account ag_solanago.PublicKey,
mint ag_solanago.PublicKey,
2021-09-04 08:41:00 -07:00
authority ag_solanago.PublicKey,
multisigSigners []ag_solanago.PublicKey,
) *ThawAccount {
2021-09-03 15:43:43 -07:00
return NewThawAccountInstructionBuilder().
SetAccount(account).
SetMintAccount(mint).
2021-09-04 08:41:00 -07:00
SetAuthorityAccount(authority, multisigSigners...)
2021-09-03 15:43:43 -07:00
}