Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
willpote committed Jul 6, 2021
1 parent 2593da0 commit 8e13382
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion package-binaries.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
npx node-pre-gyp package --target_arch=x64 --target_platform=darwin --target=12.0.0
npx node-pre-gyp package --target_arch=x64 --target_platform=linux --target=12.0.0
npx node-pre-gyp package --target_arch=arm64 --target_platform=darwin --target=12.0.0
npx node-pre-gyp package --target_arch=x64 --target_platform=darwin --target=14.0.0
npx node-pre-gyp package --target_arch=x64 --target_platform=linux --target=14.0.0
npx node-pre-gyp package --target_arch=arm64 --target_platform=darwin --target=14.0.0
npx node-pre-gyp package --target_arch=x64 --target_platform=darwin --target=16.0.0
npx node-pre-gyp package --target_arch=x64 --target_platform=linux --target=16.0.0
npx node-pre-gyp package --target_arch=x64 --target_platform=linux --target=16.0.0
npx node-pre-gyp package --target_arch=arm64 --target_platform=darwin --target=16.0.0
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@uniswap/sfast-abi",
"version": "0.0.3",
"name": "@uniswap/fast-abi",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/fast_abi.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { DataItem, MethodAbi } from 'ethereum-types';
import { BigNumber } from 'ethers';

const { Coder } = require('../native');
const { Coder } = require('../build-native');

// Allow you to override the BigNumber module used, but it must have the same
// signature as the ethers.js BigNumber module (e.g. BigNumber.from(..))
Expand Down

0 comments on commit 8e13382

Please sign in to comment.