Skip to content

Commit

Permalink
0.15.0: Release - Master (#172)
Browse files Browse the repository at this point in the history
* Added gnosis safe wallet that was missed in original deploy

* Updates for web3 onboard packages, fix for gnosis and some slight changes in text for new name web3-onboard

* 0.14.2 Release - Update version for new release (#169)

* 0.14.2-0.1.0 : Update package versions and add magic module (#170)

* Add Magic module, update packages

* Testing circlCI config for develop

* Testing circlCI config for develop v2

* Adding CI=false to prod build script

* Update version for release
  • Loading branch information
Adamj1232 authored Mar 16, 2022
1 parent 2fd8127 commit 8926ee8
Show file tree
Hide file tree
Showing 5 changed files with 588 additions and 68 deletions.
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ jobs:
deploy_stage:
docker:
- image: cimg/node:16.13.2
environment:
CI: false
resource_class: large
steps:
- checkout
Expand All @@ -17,6 +19,8 @@ jobs:
deploy_prod:
docker:
- image: cimg/node:16.13.2
environment:
CI: false
resource_class: large
steps:
- checkout
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# React Demo

A repository to demonstrate a basic integration of
[Onboard](https://github.com/blocknative/onboard)
and [Notify](https://github.com/blocknative/onboard) into a React project.
[Web3-Onboard](https://github.com/blocknative/web3-onboard)
and [Notify](https://github.com/blocknative/notify) into a React project.
For detailed documentation, head to [docs.blocknative.com](https://docs.blocknative.com)


Expand Down
13 changes: 7 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{
"name": "onboard-notify-react",
"version": "0.14.2",
"version": "0.15.0",
"dependencies": {
"@web3-onboard/fortmatic": "^2.0.0",
"@web3-onboard/fortmatic": "^2.0.2",
"@web3-onboard/gnosis": "^2.0.1",
"@web3-onboard/injected-wallets": "^2.0.1",
"@web3-onboard/injected-wallets": "^2.0.2",
"@web3-onboard/keepkey": "^2.0.0",
"@web3-onboard/keystone": "^2.0.0",
"@web3-onboard/ledger": "^2.0.0",
"@web3-onboard/magic": "^2.0.0",
"@web3-onboard/portis": "^2.0.0",
"@web3-onboard/react": "^2.0.3",
"@web3-onboard/torus": "^2.0.0",
"@web3-onboard/react": "^2.0.4",
"@web3-onboard/torus": "^2.0.1",
"@web3-onboard/trezor": "^2.0.1",
"@web3-onboard/walletconnect": "^2.0.1",
"@web3-onboard/walletlink": "^2.0.0",
Expand All @@ -26,7 +27,7 @@
"start": "HTTPS=true react-scripts start",
"start-staging": "REACT_APP_API_URL=wss://staging.api.blocknative.com/v0 REACT_APP_STAGING=true HTTPS=true react-scripts start",
"start-local": "REACT_APP_API_URL=ws://localhost:54100/v0 REACT_APP_STAGING=true HTTPS=true react-scripts start",
"build": "react-scripts build",
"build": "CI=false react-scripts build",
"build-staging": "REACT_APP_API_URL=wss://staging.api.blocknative.com/v0 REACT_APP_STAGING=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
Expand Down
6 changes: 6 additions & 0 deletions src/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import ledgerModule from '@web3-onboard/ledger'
import walletConnectModule from '@web3-onboard/walletconnect'
import walletLinkModule from '@web3-onboard/walletlink'
import portisModule from '@web3-onboard/portis'
import magicModule from '@web3-onboard/magic'
import fortmaticModule from '@web3-onboard/fortmatic'
import torusModule from '@web3-onboard/torus'
import keepkeyModule from '@web3-onboard/keepkey'
Expand Down Expand Up @@ -49,6 +50,10 @@ const trezorOptions = {

const trezor = trezorModule(trezorOptions)

const magic = magicModule({
apiKey: 'pk_live_02207D744E81C2BA'
})

export const initWeb3Onboard = init({
wallets: [
injected,
Expand All @@ -57,6 +62,7 @@ export const initWeb3Onboard = init({
trezor,
walletConnect,
gnosis,
magic,
fortmatic,
keepkey,
portis,
Expand Down
Loading

0 comments on commit 8926ee8

Please sign in to comment.