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
- Host: GitHub
- URL: https://github.com/imclint21/held-cash
- Owner: imclint21
- License: mit
- Created: 2021-12-08T23:19:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-12T07:52:51.000Z (over 4 years ago)
- Last Synced: 2025-02-13T17:30:01.061Z (over 1 year ago)
- Topics: escrow-contract, held-cash, multisig, rust, smart-contracts, solana, spl-token, vault
- Language: Rust
- Homepage: https://held.cash
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
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,
}
```