Skip to content

Commit

Permalink
fix: BREAKING CHANGES - Stable version added
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhruv-2003 committed Mar 9, 2023
1 parent 47937b4 commit 9f76e2e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "token-gating-sdk",
"version": "1.3.3",
"version": "1.3.7",
"description": "A token gating SDK to restrict access to Next and React Application for NFT and Token Holders",
"main": "dist/esm/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -51,13 +51,16 @@
"alchemy-sdk": "^2.5.0",
"dotenv": "^16.0.3",
"ethers": "^5.7.2",
"styled-components": "^5.3.8",
"wagmi": "^0.11.7",
"next": "^13.2.2",
"react": "^18.2.0",
"react-router-dom": "^6.8.2",
"next": "^13.2.2"
"styled-components": "^5.3.8",
"wagmi": "^0.11.7"
},
"peerDependencies": {
"next": "^13.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.2"
}
}
2 changes: 1 addition & 1 deletion src/components/nextWrapper/nextWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import { mainnet, polygon, optimism, arbitrum } from "wagmi/chains";
import { alchemyProvider } from "wagmi/providers/alchemy";
import { publicProvider } from "wagmi/providers/public";
import { useState, useEffect } from "react";
import { useRouter } from "next/router";
import { useRouter } from "next/router.js";
import { Network, Alchemy } from "alchemy-sdk";
import { configDataType, configType, methods, networks } from "../config/index";

Expand Down

0 comments on commit 9f76e2e

Please sign in to comment.