This repository has been archived by the owner on Apr 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 89
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 #16 from WalletConnect/v1.0.0-beta
v1.0.0-beta
- Loading branch information
Showing
26 changed files
with
3,900 additions
and
5,809 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
{ | ||
"presets": ["@babel/env"], | ||
"plugins": ["@babel/plugin-transform-runtime"] | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"useBuiltIns": "usage" | ||
} | ||
], | ||
"@babel/typescript" | ||
] | ||
} |
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 @@ | ||
build |
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,3 @@ | ||
{ | ||
"extends": "standard" | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,19 +1,46 @@ | ||
# dependencies | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Directory for instrumented libs generated by jscoverage/JSCover | ||
lib-cov | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# nyc test coverage | ||
.nyc_output | ||
|
||
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) | ||
.grunt | ||
|
||
# node-waf configuration | ||
.lock-wscript | ||
|
||
# Dependency directories | ||
node_modules | ||
jspm_packages | ||
|
||
# logs | ||
npm-debug.log | ||
# Optional npm cache directory | ||
.npm | ||
|
||
# Backpack build | ||
build | ||
# Optional eslint cache | ||
.eslintcache | ||
|
||
# config files | ||
*.env | ||
# Optional REPL history | ||
.node_repl_history | ||
|
||
.DS_Store | ||
*.log | ||
logs | ||
pids | ||
# Output of 'npm pack' | ||
*.tgz | ||
|
||
dist | ||
build | ||
|
||
# redis | ||
dump.rdb | ||
.DS_Store |
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 |
---|---|---|
@@ -1,29 +1,25 @@ | ||
# WalletConnect bridge | ||
# WalletConnect Bridge Server | ||
|
||
Bridge server for [walletconnect](https://walletconnect.org) standard. | ||
|
||
### Setup | ||
## Develop | ||
|
||
```bash | ||
$ git clone [email protected]:walletconnect/node-walletconnect-bridge.git | ||
$ cd walletconnect-bridge | ||
$ npm install | ||
yarn dev | ||
``` | ||
|
||
# start redis | ||
$ redis-server | ||
## Test | ||
|
||
```bash | ||
yarn test | ||
``` | ||
|
||
### Development | ||
## Build | ||
|
||
```bash | ||
# create config.env and change it | ||
$ npm run dev | ||
yarn build | ||
``` | ||
|
||
### Production | ||
## Run | ||
|
||
```bash | ||
# create config-production.env and change it | ||
$ npm run build | ||
$ npm start | ||
yarn start | ||
``` |
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,3 @@ | ||
require('@babel/register')({ | ||
extensions: ['.ts', '.js', '.tsx', '.jsx'] | ||
}) |
Oops, something went wrong.