Skip to content

Commit

Permalink
v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan DesRosier committed Jan 23, 2023
1 parent 433422b commit 6fb61ee
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@
"name": "@pooltogether/hooks",
"author": "PoolTogether Inc.",
"description": "Useful hooks for PoolTogether applications",
"module": "dist/hooks.esm.js",
"version": "2.0.3",
"version": "2.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"module": "dist/hooks.esm.js",
"exports": "./dist/hooks.esm.js",
"bugs": {
"url": "https://github.com/pooltogether/issues",
"email": "[email protected]"
Expand All @@ -24,15 +25,15 @@
"type": "git"
},
"scripts": {
"start": "tsdx watch --onSuccess \"yalc push\"",
"start": "tsdx watch --format esm --onSuccess \"yalc push\"",
"reinstall": "rm -rf node_modules && yarn install",
"build": "tsdx build",
"build": "tsdx build --format esm",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint src",
"lint:fix": "tsdx lint src --fix",
"prepare": "tsdx build",
"prepare": "tsdx build --format esm",
"size": "size-limit",
"analyze": "size-limit --why",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags && yarn gitwarn",
Expand Down Expand Up @@ -68,7 +69,7 @@
"@pooltogether/etherplex": "^1.1.4",
"@pooltogether/utilities": "^0.6.3",
"@pooltogether/v4-client-js": "^0.15.2",
"@pooltogether/wallet-connection": "^1.0.0-beta.3",
"@pooltogether/wallet-connection": "^1.0.0",
"@size-limit/preset-small-lib": "^5.0.3",
"@types/jest": "^26.0.23",
"@types/js-cookie": "^2.2.6",
Expand Down
1 change: 0 additions & 1 deletion src/hooks/coingecko/useCoingeckoTokenImage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export const useCoingeckoTokenImage = (chainId, address) => {
const formattedAddress = address?.toLowerCase()
const { data, isFetched, isFetching } = useCoingeckoTokenData(chainId, formattedAddress)

console.log(data?.image?.small)
return {
data: data?.image?.small,
isFetched,
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1777,10 +1777,10 @@
ethers "^5.5.1"
lodash "^4.17.21"

"@pooltogether/wallet-connection@^1.0.0-beta.3":
version "1.0.0-beta.3"
resolved "https://registry.yarnpkg.com/@pooltogether/wallet-connection/-/wallet-connection-1.0.0-beta.3.tgz#6dc7725ad7f93138509d66677b1c15e66c05b70a"
integrity sha512-YdOwngHPVyTYQq6S+jL06BWL6c5g35AP+orhtWgEq/v7W7E0nDVEIO2lS0DxAWqmbZ+BTHyZrugG9/B4+oyYCg==
"@pooltogether/wallet-connection@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@pooltogether/wallet-connection/-/wallet-connection-1.0.0.tgz#db6b4de4b7dc086b060162cc6f32e603c89bccce"
integrity sha512-NfHV39XiBN1DqydLbhiEO5uE/4vr1nGhPkBRiWznWMWlWGnRSzF4qW4CVuAXq87D6ZA9gJMSZxcIL02I/FuCEQ==
dependencies:
"@download/blockies" "^1.0.3"

Expand Down

0 comments on commit 6fb61ee

Please sign in to comment.