Skip to content
View ZacharyCouchman's full-sized avatar
Block or Report

Block or report ZacharyCouchman

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

Hi, I'm Zach πŸ‘‹ - welcome to my GitHub

I'm an enthusiastic engineer that enjoys building quality products

  • πŸ‘¨β€πŸ’» I’m currently working on frontend web technologies using React and Typescript in the web3 space

  • πŸ“š I'm learning as much as I can about front end and back end tech

  • πŸ•΅οΈβ€β™‚οΈ I am curious to discover and try new technologies when I can

  • 🏈 Fun Fact: I'm a big Carlton supporter in Aussie Rules football

Connect with me


GitHub Stats

Pinned Loading

  1. blog blog Public

    Forked from mmistakes/minimal-mistakes

    πŸ“ Zach's Blog forked from Minimal Mistakes

    JavaScript

  2. ethereum-with-javascript-demo ethereum-with-javascript-demo Public

    A demo of how to interact with the Ethereum blockchain using Javascript and ethers js

    JavaScript

  3. crypto-prices crypto-prices Public

    TypeScript

  4. dynamicallyLoadJSAndWait.js dynamicallyLoadJSAndWait.js
    1
    // dynamically load a script and wait for load event
    2
    async function loadScript(url) {
    3
      return new Promise((resolve, reject) => {
    4
        let ourScript = document.createElement('script');
    5
    
                  
  5. Get ERC20 token balance of a wallet Get ERC20 token balance of a wallet
    1
    import { ethers } from "ethers";
    2
    import { formatUnits } from "ethers/lib/utils.js";
    3
    
                  
    4
    const walletAddress = ""; // add the wallet address you want to check the balance of
    5
    const rpcUrl = "https://eth-mainnet.g.alchemy.com/v2/demo;
  6. Getting the ETH balance of a wallet Getting the ETH balance of a wallet
    1
    import { ethers } from "ethers"
    2
    import { formatEther } from "ethers/lib/utils.js";
    3
    
                  
    4
    const walletAddress = ""; // add the wallet address you want to check the balance of
    5