Skip to content
View franRappazzini's full-sized avatar
👨‍💻
👨‍💻

Block or report franRappazzini

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
franRappazzini/README.md

Hey there! I'm Francisco 👋

struct Role<'a> {
    name: &str,
    lang: Vec<&'a str>,
    stack: Vec<&'a str>,
}

struct Developer<'a> {
    name: &'a str,
    city: &'a str,
    role: Role<'a>,
    energy: &'a str,
}

fn main() {
    let i = Developer {
        name: "Francisco Rappazzini",
        city: "Buenos Aires, Argentina",
        role: Role {
            name: "Blockchain Developer",
            lang: vec![
                "Rust", "TypeScript", "JavaScript", "Solidity",
            ],
            stack: vec![
                "Anchor", "Node", "Git", "Next"
            ],
        },
        energy: "full 💯",
    };

    println!(
        "Hi! I'm {}, a {} from {}. I work with technologies like: {:?}.",
        i.name,
        i.role.name,
        i.city,
        i.role.lang
    );
}

Francisco's GitHub stats


💻 Languages:

img-javascript img-typescript Rust Language img-solidity img-html img-css



🪄 Skills:

img-node anchor - solana framework img-react img-nextjs img-redux img-jquery img-sass img-less img-mongodb



img-firebase img-mui img-bootstrap img-ajax img-npm img-git img-github




Pinned Loading

  1. damm-v2 damm-v2 Public

    Forked from MeteoraAg/damm-v2

    Dynamic Automated Market Maker V2 Program (DAMM V2)

    TypeScript 1

  2. amm amm Public

    An Automated Market Maker (AMM) program implemented on Solana using the Anchor framework. This project implements a liquidity pool system with token swapping based on the constant product formula (…

    Rust

  3. raydium-swap-zetachain raydium-swap-zetachain Public

    This project is an Anchor program for Solana that interacts with ZetaChain and performs token swaps using Raydium's CLMM CPI.

    Rust 1

  4. p2p p2p Public

    A peer-to-peer (P2P) escrow program built on Solana using the Anchor framework. This project facilitates secure SPL token exchanges between buyers and sellers, with dispute resolution mechanisms an…

    Rust 1

  5. nft-lottery nft-lottery Public

    This project is a program for Solana, developed with Anchor, that implements an NFT lottery. It allows you to create lotteries, buy tickets, select winners randomly, and claim prizes.

    Rust 1 1