Coder Social home page Coder Social logo

419labs / starknet-ecosystem.com Goto Github PK

View Code? Open in Web Editor NEW
556.0 16.0 453.0 47.15 MB

Starknet Ecosystem Dashboard

Home Page: https://www.starknet-ecosystem.com

License: Apache License 2.0

JavaScript 0.71% TypeScript 99.20% CSS 0.09%
starknet ecosystem-dashboard community starkware ecosystem-starknet

starknet-ecosystem.com's People

Contributors

0xandee avatar 0xevon avatar 0xlny avatar 0xmentornotapseudo avatar 0xsacha avatar 0xx92 avatar anders-torbjornsen avatar avimak avatar dependabot[bot] avatar devnet0x avatar florian-bellotti avatar fricoben avatar froststarbook avatar h0xva avatar hannespfeiffer avatar happyduong1 avatar iddriss avatar omahs avatar parketh avatar princearoragithub avatar rabeehrz avatar rmzlb avatar snowchris99 avatar starkenobi avatar starkfinance-project avatar tgyf007 avatar wumingyue123 avatar wuwentao123 avatar yuval-weiss avatar zypheraum avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

starknet-ecosystem.com's Issues

How to update banner

My project doesn't show the banner yet. How do I get my banner to appear on the starknet-ecosystem.com website?

Twitter logo and banner doesn't display correctly

Hi there,

I recently submitted a pull request for WIW protocol #166

However, the twitter logo and banner is not displayed correctly on deployed website.
image

I've double checked the twitter link provided in PR and it should be correct. Anyone has some clue?

REAL USER NOT COMPLAINED - STARKNET AIRDROP

Hello!
My name is Fernando José Melo da Fonseca. Goânia - Brazil, Government ID: CPF 858.211.011-15

I feel very sad, and completely desapointed about Starknet Airdrop. I couldn't believe when I saw Zero on my both (Argent X and Bravo) wallets. I have interected for about 6 months using both wallets, more than $ 330,000 in transatios, I have used all the apps you got, I have done over 200 transations using both wallets, to use the most of all apps, I mean, I really like the ecossistem, I have funds invested on Zklend. on Nostra, on Ekubo... I have used a lot, so... whats the point? I had the minimmum amount on wallets on snapshot ( dispite been completely unfair this item, considering one random day in the wallet...) anyway, I use USA VPN. Is that the reason? because I am brazilian, live in Brazil, I have done all the process from here, Goiânia - Goiás - Brazil.
I really hope thats the reason, and I still get the proper reward, because it's just unfair with me. I know many people are feeling like that, but, please, you got too reevaluate my wallets. That´s the only airdrop I was sure I would get, because I really used all the apps, so it´s just umbeliveble. Why me? My transations are just not important for you? You should´t do that. I worked hard for that, I'm not a robot... so whats the point?

Argent X adress: 0x04800a945BC887C219af67B26BfAFBe2F8CD256b30acDcf9563356A9174cd131

Bravo adress: 0x02769904346928764e380527d41a46d1dfde0118d6ad8afad990cf397bd2c551

Please, I sincerily ask you to reanalyze all my stats, so that I´m completely sure it was a ruge mistake. I really trust your fairness, and that you will correct this mistake as soon as possible. I have never used bots and also, I only have this two wallets.
Thanks! I hope you can answer me as soon as possible as well.

image

image

Can you check this STARKNET full node in Rust This is a basic example that sets up a TCP server listening on 127.0.0.1:8080. The handle_client function is where you would implement the logic for handling STARKNET messages.

// Assuming you have necessary dependencies in your Cargo.toml

use std::net::{TcpListener, TcpStream};
use std::io::{Read, Write};

fn handle_client(mut stream: TcpStream) {
// Implement STARKNET protocol handling here
// Read and process incoming messages
// Respond accordingly

let response = "Hello, STARKNET!";
stream.write_all(response.as_bytes()).unwrap();

}

fn main() {
let listener = TcpListener::bind("127.0.0.1:8080").expect("Failed to bind");

for stream in listener.incoming() {
    match stream {
        Ok(stream) => {
            // Spawn a new thread or async task for each incoming connection
            std::thread::spawn(|| {
                handle_client(stream);
            });
        }
        Err(e) => {
            eprintln!("Error: {}", e);
        }
    }
}

}
~~
~~

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.