Skip to content

Commit

Permalink
Merge pull request #62 from blocknative/release/0.8.0
Browse files Browse the repository at this point in the history
Release/0.8.0
  • Loading branch information
taylorjdawson authored Jun 1, 2021
2 parents 79fe987 + aa32098 commit a60ca01
Show file tree
Hide file tree
Showing 5 changed files with 726 additions and 77 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
deploy_stage:
docker:
- image: circleci/node:10.18.1-browsers
- image: circleci/node:12-browsers
steps:
- checkout
- run: rm yarn.lock && yarn install --network-concurrency 1
Expand All @@ -12,7 +12,7 @@ jobs:
- run: ssh -oStrictHostKeyChecking=no -v $EC2_PROD_USER@$EC2_PROD_IP "sh /home/ubuntu/move.sh reactdemo-staging"
deploy_prod:
docker:
- image: circleci/node:10.18.1-browsers
- image: circleci/node:12-browsers
steps:
- checkout
- run: yarn cache clean && yarn install --network-concurrency 1
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "onboard-notify-react",
"version": "0.7.0",
"version": "0.8.0",
"dependencies": {
"bnc-notify": "^1.5.1",
"bnc-notify": "^1.6.1",
"bnc-notify-staging": "https://github.com/blocknative/notify#develop",
"bnc-onboard": "^1.24.0",
"bnc-onboard": "^1.26.0",
"bnc-onboard-staging": "https://github.com/blocknative/onboard#develop",
"ethers": "^4.0.37",
"ethers": "^5.2.0",
"react": "^16.9.0",
"react-dom": "^16.9.0",
"react-scripts": "3.1.1",
Expand Down
5 changes: 2 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,6 @@ function App() {
emitter.on('txCancel', console.log)
emitter.on('txFailed', console.log)

// emitter.on("all", event => {
// console.log("ALLLLLLL", event)
// })
}

async function sendInternalTransaction() {
Expand Down Expand Up @@ -529,6 +526,8 @@ function networkName(id) {
return 'goerli'
case 42:
return 'kovan'
case 100:
return 'xdai'
case 'localhost':
return 'localhost'
default:
Expand Down
3 changes: 3 additions & 0 deletions src/services.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ export function initOnboard(subscriptions) {
{ walletName: 'tokenpocket', rpcUrl },
{ walletName: 'authereum', disableNotifications: true },
{ walletName: 'ownbit'},
{ walletName: 'gnosis' },
{ walletName: 'bitpie' },
{ walletName: 'xdefi' },
]
},
walletCheck: [
Expand Down
Loading

0 comments on commit a60ca01

Please sign in to comment.