Skip to content

markus-lmax/multisig-native

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

82 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting started

TODOs

  • https://github.com/kevinheavey/solana-bankrun is deprecated, consider replacing with proposed alternative LiteSvm
  • port over test "should not be able to edit transaction account with transaction account private key after initialisation"
  • some methods currently only pass in the multisig, not the multisig_signer as well - need to add the latter in order to re-implement the following anchor constraint (extract relevant code from create_multisig into common.rs?):
pub struct Auth<'info> {
  #[account(mut)]
  multisig: Box<Account<'info, Multisig>>,
  #[account(seeds = [multisig.key().as_ref()], bump = multisig.nonce)]
  multisig_signer: Signer<'info>,
  }

About

Multisig without Anchor

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published