- Refer to the structure of Crypto-Charity
- Factory pattern is applied to create a new bounty
- However, it seems that the factory pattern is anti-pattern in Solana.
- 📌 How to write a factory pattern contracts in solana
- Dynamic length size account data in Solana
- https://www.reddit.com/r/solana/comments/1dbt7tx/whats_the_best_way_to_store_an_array_in_programs/
- 🤔 How to store dynamically growing array in Solana?
- https://solana.stackexchange.com/questions/2339/account-size-calculation-when-using-vectors
- 📌 Anchor PDAs and Accounts
- 📌📌 Best way to keep track of all the PDAs that has been created by my program in Solana
- Hashmap in Solana
- Solana Rust program HashMap<string, u64>
- 📌 Single Map Account
- 📌 programs/mpl-core/src/plugins/internal/owner_managed/autograph.rs
- 📌 FrankC01/main.rs
- https://solana.stackexchange.com/questions/5105/how-to-use-single-map-account-btreemap-anchor-solana
- 🤔 Error: Type BTreeMap<u8,u64> not found in IDL. #2729
- 🤔 Are writes to BTreeMaps expensive? How much compute units does it take?
- 🍭 How can i create hash table using PDAs?