cryptopapi997
cryptopapi997
On npm and the github commit history the latest version is 0.12.0. In the tags tab on github however, there is no tag for 0.12.0 and the latest one is...
Picking up on https://github.com/coral-xyz/anchor/pull/3006 since we need this for Arcium. Adds `request_threadsafe` which creates a threadsafe request for usage in tokio. Fully backwards compatible. Idk if https://github.com/coral-xyz/anchor/pull/3053 breaks this, so...
I wrote a [twitter thread about this explaining the issue](https://x.com/cryptopapi997/status/1804418268599587148), but wanted to open it here too to get people's takes on what's the best way forward. Solana 2.0.0 just...
Resolves https://github.com/coral-xyz/anchor/issues/3050
Solana client has a a feature that allows you to [generate and use a mock rpc client](https://docs.rs/solana-client/latest/solana_client/rpc_client/struct.RpcClient.html#method.new_mock), which is supremely useful when doing unit tests. Anchor client (as far as...
If we define an account like so ``` use std::marker::PhantomData; use anchor_lang::prelude::*; declare_id!("B8v9C4JA5CqMWcoKYfA2hQSEytFxPVk1iWeEjXQxCvS3"); #[program] pub mod sample { use super::*; pub fn initialize(ctx: Context) -> Result { msg!("Greetings from: {:?}",...