Skip to content
View ledgerwave's full-sized avatar
Avaliable
Avaliable
  • Remote

Organizations

@dev-protocol @Design-and-Code @Devs-Dungeon @Huniko-Team @infraform

Block or report ledgerwave

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 250 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
ledgerwave/README.md

Senior Fullstack & Blockchain Developer

Passionate about building scalable web applications and innovative blockchain solutions.
I specialize in creating robust, secure, and user-friendly applications that bridge traditional web development with cutting-edge blockchain technology.

GitHub Analytics

stats graph languages graph
trophy graph

Rust Smart Contract

use near_sdk::borsh::{self, BorshDeserialize, BorshSerialize};
use near_sdk::{env, near_bindgen};

#[near_bindgen]
#[derive(BorshDeserialize, BorshSerialize)]
pub struct Counter {
    value: i32,
}

// Default implementation
impl Default for Counter {
    fn default() -> Self {
        Self { value: 0 }
    }
}

#[near_bindgen]
impl Counter {
    // Increment the counter
    pub fn increment(&mut self) {
        self.value += 1;
        env::log_str(&format!("Counter incremented to {}", self.value));
    }

    // Decrement the counter
    pub fn decrement(&mut self) {
        self.value -= 1;
        env::log_str(&format!("Counter decremented to {}", self.value));
    }

    // Get the current value
    pub fn get_value(&self) -> i32 {
        self.value
    }
}

Pinned Loading

  1. ASKSpeak ASKSpeak Public

    ASKSpeak converts ASL gestures into spoken words using Leap Motion, enabling real-time communication for the hearing-impaired.

    Python 1

  2. shinytouch shinytouch Public

    Open source optical touchscreen retrofit system using only a webcam, turns any flat reflective surface into a touch interface.

    Python 20

  3. ecommerce-website ecommerce-website Public

    A modern e-commerce web app built with Next.js, MongoDB, and NextAuth. Features include product management, cart, checkout, admin dashboard, and Cloudinary image uploads with responsive design.

    TypeScript 1

  4. solana-blockchain-development solana-blockchain-development Public

    Solana blockchain development toolkit & example projects — includes Solana programs, client integration, wallet interaction, token operations, and full-stack demos for building on Solana.

    Rust 1

  5. Solidity-Contracts Solidity-Contracts Public

    “Solidity smart contract collection for LedgerWave: reusable Ethereum contracts for tokenization, access control, utilities, and protocol logic ready for composable blockchain development.

    Solidity 1

  6. vots-smart-contracts vots-smart-contracts Public

    A Solidity-based proof-of-concept voting system built on Ethereum. Supports election creation, NFT minting, voter registration/accreditation, voting, instant results, and optional off-chain verific…

    Solidity 1