8000 thepablosantos (Pablo Santos) · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View thepablosantos's full-sized avatar
💻
💻

Block or report thepablosantos

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

Hi, I'm Pablo Santos ✌️

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

contract GitHubProfile {
    string public welcomeMessage;

    event Deployed(address indexed by);
    event Greeted(string message);

    constructor() {
        welcomeMessage = "Hello! Welcome to my GitHub profile!";
        emit Deployed(msg.sender);
    }

    function greet() public view returns (string memory) {
        emit Greeted(welcomeMessage);
        return welcomeMessage;
    }
}

Linkedin Badge ProtonMail Badge


Solidity NodeJS TypeScript Docker React JavaScript CSS

Pinned Loading

  1. multiversx-block-explorer multiversx-block-explorer Public

    MultiversX Blockchain Explorer developed with React and TypeScript. Features real-time transaction monitoring and block/account search with a modern interface.

    TypeScript

  2. eth-network-interactions eth-network-interactions Public

    Toolkit to interact with the Ethereum blockchain using Web3.js. Check wallet balances, retrieve block & transaction details, and send signed transactions securely.

    JavaScript

  3. ethers-network-interactions ethers-network-interactions Public

    Toolkit to interact with the Ethereum blockchain using Ethers.js.

    JavaScript

  4. ethereum-wallet-manager ethereum-wallet-manager Public

    Ethereum wallet manager to generate wallets, encrypt private keys, and securely decrypt keystores. Future plans include CLI support, transaction signing, and multi-wallet management.

    JavaScript

  5. simple-storage-solidity simple-storage-solidity Public

    Basic Solidity project using Hardhat. Demonstrates fundamental smart contract concepts and deployment.

    Solidity

0