You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are also [ecosystem program examples](#ecosystem-solana-program-examples)
24
26
25
27
## Basics
26
28
@@ -61,7 +63,7 @@ interact with them in programs.
61
63
|[Transfer Tokens](https://github.com/solana-developers/program-examples/tree/main/tokens/transfer-tokens)| Shows how to transfer SPL token using CPIs into the token program. | Anchor, Native |
62
64
|[Token-2022](https://github.com/solana-developers/program-examples/tree/main/tokens/token-2022)| See Token 2022 (Token extensions). | Anchor, Native |
63
65
64
-
## Token 2022 (Token Extensions)
66
+
## Token Extensions (Token 2022)
65
67
66
68
Token 2022 is a new standard for tokens on Solana. It is a more flexible and
67
69
lets you add 16 different extensions to a token mint to add more functionality
@@ -78,3 +80,12 @@ to it. A full list of the extensions can be found in the
78
80
|[Not Transferable](https://github.com/solana-developers/program-examples/tree/main/tokens/token-2022/non-transferable)| Useful for example for achievements, referral programs or any soul bound tokens. | Anchor, Native |
79
81
|[Transfer fee](https://github.com/solana-developers/program-examples/tree/main/tokens/token-2022/transfer-fee)| Every transfer of the tokens hold some tokens back in the token account which can then be collected. | Anchor, Native |
80
82
|[Transfer Hook](https://github.com/solana-developers/program-examples/tree/main/tokens/token-2022/transfer-hook)| Four examples to add additional functionality to your token using a CPI from the token program into your program. | Anchor |
83
+
84
+
## Ecosystem Solana program examples
85
+
86
+
Third parties often maintain their own libraries of example Solana programs.
87
+
These are maintained by the providers rather than by Solana Foundation.
88
+
89
+
-[Quicknode's Solana Program Examples](https://github.com/quicknode/solana-program-examples)
90
+
provides additional programs, particularly for financial software, for both
0 commit comments