Skip to content

zhenyou-nide/ether-wallet-visual-demo

Repository files navigation

My Ether Wallet

🎓 Feature

  • create account
  • import account by Mnemonic/private key/keystore & password
  • send transaction
  • token transaction
  • read & write contract

🚀 Quick start

  1. install dependencies

    npm install
  2. initial env variable

    cd ether-wallet-visual-demo/
    cp .env.example .env
  3. Start developing.

    start it up.

    npm run dev

different config from ether-wallet-demo

  1. install packages browserify

    npm install stream-browserify events process buffer assert
  2. add script to index.html

    <!-- global is undefined  -->
    <script> 
      var global = window;
    </script>
    <script type="module">
      import process from 'process';
      import { Buffer } from 'buffer';
    
      window.Buffer = Buffer;
      window.process = process;
    </script>
  3. add alias to pack config file: vite.config.ts

    resolve: {
       alias: {
           process: 'process/browser',
           stream: 'stream-browserify',
       },
    }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published