xf00f / web3x

Ethereum TypeScript Client Library - for perfect types and tiny builds.
211 stars 27 forks source link

bugfix: Correctly import 'uuid' package #82 #83

Open nftleader opened 3 years ago

nftleader commented 3 years ago

This PR fixes #82

Attempted import error: 'uuid' does not contain a default export (imported as 'uuid').

by updating import uuid from 'uuid'; to import * as uuid from 'uuid';