Skip to content
View yipu3's full-sized avatar
🧠
🧠

Block or report yipu3

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. lightasbird.xyz lightasbird.xyz Public

    Personal blog by Yipu Zhang.

    HTML

  2. rock-paper-scissors rock-paper-scissors Public

    Rust

  3. Fetch Near addresses under a tweet. ... Fetch Near addresses under a tweet. Set env variable `ACCESS_TOKEN` using your Twitter Bearer Token and input `conversation_id` of the tweet as a command argument.
    1
    conversation_id=$1
    2
     
    3
    log="$conversation_id.log"
    4
    output="$conversation_id.txt"
    5
     
  4. Fetch the mint pair of a Raydium V4 ... Fetch the mint pair of a Raydium V4 AMM pool in rust
    1
    use solana_account_decoder::UiAccountEncoding;
    2
    use solana_client::{nonblocking::rpc_client::RpcClient, rpc_config::RpcAccountInfoConfig};
    3
    use solana_sdk::pubkey::Pubkey;
    4
    use std::str::FromStr;
    5