Squads Protocol Side Track for Hyperdrive
Submit your project
  • Introduction
    • Hyperdrive Hackathon
    • What is Squads Protocol
    • Quickstart
  • Development
    • Overview
    • Instructions - Interact with the program
      • Create Multisig
      • Add Member
      • Add spending limit
      • Remove Spending Limit
      • Create Vault Transaction
      • Create Config Transaction
      • Create Proposal
      • Approve Transaction
      • Reject Proposal
      • Cancel Proposal
      • Execute Transaction
    • PDAs - Read data from the Program
      • Multisig Account Info
      • Transaction Account Info
      • Proposal Account Info
  • Reference
    • Accounts
    • Spending Limits
    • Time-locks
    • Permissions
    • SDKs
    • Transaction Builder
  • Squads CLI
    • Installation
    • Commands
  • Submissions
    • Submit your project
    • Get support
Powered by GitBook
On this page
  1. Development
  2. Instructions - Interact with the program

Create Config Transaction

Config Transactions are a little more complicated than the other ones, as there are multiple configuration arguments that you can supply to such a transaction. Let's take a look at how this would look like.

Let's set the requirements up

import * as multisig from "@sqds/multisig";

// Cluster Connection
const connection = new Connection( < your rpc url > );

// Fee payer is the a signer that pays the transaction fees
const feePayer = Keypair.generate();

// Derive the multisig PDA
const multisigPda = multisig.getMultisigPda({
    // The createKey has to be a Public Key, see accounts reference for more info
    createKey,
})[0];

// Derive the PDA of the Squads Vault
const [vaultPda] = multisig.getVaultPda({
    multisigPda,
    index: 0,
});

const transactionIndex = 1n;

Change the Threshold of the Multisig

await multisig.rpc.configTransactionCreate({
    connection,
    feePayer: members.proposer,
    multisigPda: controlledMultisigPda,
    transactionIndex: 1n,
    creator: members.proposer.publicKey,
    actions: [{
        __kind: "ChangeThreshold",
        newThreshold: 3
    }],
}),

This flow applies to all other actions, see more here.

PreviousCreate Vault TransactionNextCreate Proposal

Last updated 1 year ago