Armani Ferrante Profile picture
CEO @Backpack @MadLads @anchorlang. Jobs: https://t.co/D6Fs0yprr1 Exchange: https://t.co/GdGbaa0D2n App: https://t.co/UR4AAqAO25 &mut self
Apr 21, 2024 20 tweets 3 min read
Reflecting on one year into Mad Lads.

How to build community.

❤️ These days, "community" is such a buzz word that it's become almost meaningless. If you take a look at the ever growing graveyard of communities, it's tempting to write them off as ponzis and a total distraction (indeed, many have asked me to give up on Mad Lads).
Jun 21, 2023 40 tweets 9 min read
Ok so wtf is @MadLadsNFT Soul Abstraction?

The guide: But first, the TLDR.

Soul Abstraction allows you to permissionlessly airdrop *arbitrary* protocols/assets onto an NFT without getting rugged *while* keeping that protocol/asset aligned with the NFT community as whole.
Jun 20, 2022 21 tweets 3 min read
So WTF are xNFTS? X stands for eXecutable—tokenized code representing ownership rights over its execution. The idea is simple, so simple it’s a bit surprising no one has done it yet. But it’s as simple as it is powerful, and we think it’s going to change everything.
Jun 16, 2022 10 tweets 3 min read
Meet Coral. The WAO Company.

@0xCoral Today I’m excited to bring into the world our company, Coral, the new home for @anchorlang, apr.dev and so much more.
Aug 7, 2021 13 tweets 3 min read
.@ProjectSerum just released Permissioned Markets on @solana.

A brief introduction for non-shadowy supercoders.

❤️ (I was told to write a blog post, but I'd rather code, so this is my way of compromising.)
Jul 18, 2021 4 tweets 1 min read
Rust quiz.

Convert `Vec<Vec<Vec<u8>>>` into `&[&[&[u8]]]` in a single expression. (I have failed this)
Jul 4, 2021 25 tweets 4 min read
Some more tips for developing secure programs on Solana. If I had to give one piece of advice to a new Solana dev, it would be to internalize the following type alias.

```
type UnsafeAccount = AccountInfo;
```

Accounts given to a program can't be trusted, and can be a major source of problems if not handled correctly.
May 19, 2021 14 tweets 3 min read
A simple Anchor tutorial. 👇 First install all required dependencies. project-serum.github.io/anchor/getting….