This repository has been archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #840 from 3box/release/v1.20.0
release v1.20.0
- Loading branch information
Showing
32 changed files
with
16,635 additions
and
35,394 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
version: 1 | ||
update_configs: | ||
- package_manager: "javascript" | ||
target_branch: "develop" | ||
directory: "/" | ||
update_schedule: "weekly" | ||
default_reviewers: | ||
- "zachferland" | ||
default_assignees: | ||
- "zachferland" | ||
allowed_updates: | ||
- match: | ||
dependency_type: "production" | ||
update_type: "all" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ tmp/ | |
.DS_Store | ||
yarn.lock | ||
orbitdb | ||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import Web3Modal from "web3modal" | ||
import Portis from "@portis/web3"; | ||
import Authereum from "authereum"; | ||
import Fortmatic from "fortmatic"; | ||
import WalletConnectProvider from "@walletconnect/web3-provider"; | ||
|
||
const providerOptions = { | ||
portis: { | ||
package: Portis, | ||
options: { | ||
id: "8f5cf962-ad62-4861-ab0c-7b234b6e6cff" | ||
} | ||
}, | ||
walletconnect: { | ||
package: WalletConnectProvider, | ||
options: { | ||
infuraId: "e87f83fb85bf4aa09bdf6605ebe144b7" | ||
} | ||
}, | ||
fortmatic: { | ||
package: Fortmatic, | ||
options: { | ||
key: "pk_live_EC842EEAC7F08995" | ||
} | ||
}, | ||
authereum: { | ||
package: Authereum, | ||
options: {} | ||
} | ||
}; | ||
|
||
const web3Modal = new Web3Modal({ | ||
network: "mainnet", | ||
cacheProvider: true, | ||
providerOptions | ||
}); | ||
|
||
|
||
export default web3Modal |
Oops, something went wrong.