From the Solana docs on Program Accounts, when a new program is deployed, a Program Account and an associated Program Executable Data Account is created and the Program Account stores the address of an executable data account. This can be seen on a Solana explorer for most programs, such as the Token-2022 program. However, there are some programs like the Token Program that does not have an associated Program Executable Data Account. Why is that and how is that possible?
↧