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

Block or report yipu3

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
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.

    JavaScript

  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