Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Commit

Permalink
Merge pull request #67 from EveripediaNetwork/changeset-release/main
Browse files Browse the repository at this point in the history
  • Loading branch information
Royal-lobster authored May 3, 2023
2 parents ee98b4b + 6a35ede commit 643d951
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 26 deletions.
20 changes: 0 additions & 20 deletions .changeset/late-pillows-confess.md

This file was deleted.

24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,32 @@
# @everipedia/wagmi-magic-connector

## 0.12.0

### Minor Changes

- c09ccc0: Add support for switchChain for MagicConnectConnector
You can now pass a list of network accepted to switch chain
```ts
new MagicConnectConnector({
chains: chains,
options: {
apiKey: environment.MAGIC_API_KEY,
networks: [
{ chainId: 1, rpcUrl: "https://your-ethereum-rpc-url" },
{ chainId: 137, rpcUrl: "https://your-polygon-rpc-url" },
// ...
],
},
});
```

## 0.11.0

### Minor Changes

- 58b39f3: Update Magic Connect Connector to use Magic Connect's Modal UI
- This will use Magic Connect's Modal instead of homemade one.
- Remove the styling props to constructor for migration
- This will use Magic Connect's Modal instead of homemade one.
- Remove the styling props to constructor for migration

## 0.10.1

Expand Down
17 changes: 13 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"name": "@everipedia/wagmi-magic-connector",
"version": "0.11.0",
"version": "0.12.0",
"description": "wagmi connector to connect with Magic SDK",
"main": "build/module/index.js",
"type": "module",
"repository": "https://github.com/EveripediaNetwork/wagmi-magic-connector",
"license": "MIT",
"keywords": ["wagmi", "extension", "magic"],
"keywords": [
"wagmi",
"extension",
"magic"
],
"scripts": {
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.json",
Expand Down Expand Up @@ -41,8 +45,13 @@
"ethers": "^5.7.1"
},
"files": [
"build/main", "build/module", "!**/*.spec.*", "!**/*.json", "CHANGELOG.md",
"LICENSE", "README.md"
"build/main",
"build/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 643d951

Please sign in to comment.