An open API service indexing awesome lists of open source software.

https://github.com/imclint21/held-cash

held.cash Official Program
https://github.com/imclint21/held-cash

escrow-contract held-cash multisig rust smart-contracts solana spl-token vault

Last synced: 2 months ago
JSON representation

held.cash Official Program

Awesome Lists containing this project

README

          

# 🏦 Held.cash

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

## Escrow

```rust
#[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,
}
```