Skip to content

imclint21/held-cash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🏦 Held.cash

Multisig Vault & Escrow Program build on Solana, written in Rust 🦀

Escrow

#[derive(BorshSerialize, BorshDeserialize, Debug)]
struct VaultDetails {
    // Owner's public key
    pub owner: Pubkey,

    // Multisig cosigners
    pub cosigners: [Pubkey],

    // Number of required signatures
    pub requires: i32,
}