Skip to content

Commit 8926ee8

Browse files
authored
0.15.0: Release - Master (#172)
* 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
1 parent 2fd8127 commit 8926ee8

5 files changed

Lines changed: 588 additions & 68 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ jobs:
33
deploy_stage:
44
docker:
55
- image: cimg/node:16.13.2
6+
environment:
7+
CI: false
68
resource_class: large
79
steps:
810
- checkout
@@ -17,6 +19,8 @@ jobs:
1719
deploy_prod:
1820
docker:
1921
- image: cimg/node:16.13.2
22+
environment:
23+
CI: false
2024
resource_class: large
2125
steps:
2226
- checkout

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# React Demo
22

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

88

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{
22
"name": "onboard-notify-react",
3-
"version": "0.14.2",
3+
"version": "0.15.0",
44
"dependencies": {
5-
"@web3-onboard/fortmatic": "^2.0.0",
5+
"@web3-onboard/fortmatic": "^2.0.2",
66
"@web3-onboard/gnosis": "^2.0.1",
7-
"@web3-onboard/injected-wallets": "^2.0.1",
7+
"@web3-onboard/injected-wallets": "^2.0.2",
88
"@web3-onboard/keepkey": "^2.0.0",
99
"@web3-onboard/keystone": "^2.0.0",
1010
"@web3-onboard/ledger": "^2.0.0",
11+
"@web3-onboard/magic": "^2.0.0",
1112
"@web3-onboard/portis": "^2.0.0",
12-
"@web3-onboard/react": "^2.0.3",
13-
"@web3-onboard/torus": "^2.0.0",
13+
"@web3-onboard/react": "^2.0.4",
14+
"@web3-onboard/torus": "^2.0.1",
1415
"@web3-onboard/trezor": "^2.0.1",
1516
"@web3-onboard/walletconnect": "^2.0.1",
1617
"@web3-onboard/walletlink": "^2.0.0",
@@ -26,7 +27,7 @@
2627
"start": "HTTPS=true react-scripts start",
2728
"start-staging": "REACT_APP_API_URL=wss://staging.api.blocknative.com/v0 REACT_APP_STAGING=true HTTPS=true react-scripts start",
2829
"start-local": "REACT_APP_API_URL=ws://localhost:54100/v0 REACT_APP_STAGING=true HTTPS=true react-scripts start",
29-
"build": "react-scripts build",
30+
"build": "CI=false react-scripts build",
3031
"build-staging": "REACT_APP_API_URL=wss://staging.api.blocknative.com/v0 REACT_APP_STAGING=true react-scripts build",
3132
"test": "react-scripts test",
3233
"eject": "react-scripts eject"

src/services.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import ledgerModule from '@web3-onboard/ledger'
1111
import walletConnectModule from '@web3-onboard/walletconnect'
1212
import walletLinkModule from '@web3-onboard/walletlink'
1313
import portisModule from '@web3-onboard/portis'
14+
import magicModule from '@web3-onboard/magic'
1415
import fortmaticModule from '@web3-onboard/fortmatic'
1516
import torusModule from '@web3-onboard/torus'
1617
import keepkeyModule from '@web3-onboard/keepkey'
@@ -49,6 +50,10 @@ const trezorOptions = {
4950

5051
const trezor = trezorModule(trezorOptions)
5152

53+
const magic = magicModule({
54+
apiKey: 'pk_live_02207D744E81C2BA'
55+
})
56+
5257
export const initWeb3Onboard = init({
5358
wallets: [
5459
injected,
@@ -57,6 +62,7 @@ export const initWeb3Onboard = init({
5762
trezor,
5863
walletConnect,
5964
gnosis,
65+
magic,
6066
fortmatic,
6167
keepkey,
6268
portis,

0 commit comments

Comments
 (0)