Skip to content

Commit 5721bb7

Browse files
initial port
1 parent 19c781e commit 5721bb7

File tree

171 files changed

+6026
-54733
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+6026
-54733
lines changed

.github/FUNDING.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# These are supported funding model platforms
22

33
github: noahzinsmeister
4-
custom: 'https://gitcoin.co/grants/248/web3-react-2'

.github/ISSUE_TEMPLATE/bug_report.md

-24
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

-13
This file was deleted.

.github/workflows/CI.yml

+14-24
Original file line numberDiff line numberDiff line change
@@ -3,40 +3,30 @@ name: CI
33
on:
44
pull_request:
55
branches:
6-
- v6
6+
- main
77
push:
88
branches:
9-
- v6
9+
- main
1010

1111
jobs:
12-
test:
12+
build:
13+
runs-on: ${{ matrix.os }}
14+
1315
strategy:
1416
matrix:
15-
node: ['10.x', '12.x']
16-
os: [ubuntu-latest, macOS-latest]
17-
18-
runs-on: ${{ matrix.os }}
17+
os:
18+
- ubuntu-latest
19+
- macOS-latest
20+
node_version:
21+
- 14
1922

2023
steps:
21-
- uses: actions/checkout@v1
22-
- uses: actions/setup-node@v1
24+
- uses: actions/checkout@v2
25+
- uses: actions/setup-node@v2
2326
with:
24-
node-version: ${{ matrix.node }}
25-
26-
- run: npm install -g yarn
27-
28-
- id: yarn-cache
29-
run: echo "::set-output name=dir::$(yarn cache dir)"
30-
- uses: actions/cache@v1
31-
with:
32-
path: ${{ steps.yarn-cache.outputs.dir }}
33-
key: ${{ matrix.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
34-
restore-keys: |
35-
${{ matrix.os }}-yarn-
27+
node-version: ${{ matrix.node_version }}
28+
cache: 'yarn'
3629

3730
- run: yarn
3831
- run: yarn bootstrap
39-
40-
- run: yarn lint
4132
- run: yarn build
42-
- run: yarn test

.gitignore

+3-11
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
*.log
2-
.DS_Store
3-
node_modules
4-
.cache
5-
.rts2_cache_cjs
6-
.rts2_cache_esm
7-
.rts2_cache_umd
8-
.rts2_cache_system
9-
dist
10-
.env
11-
out
1+
node_modules/
2+
packages/*/dist/
3+
packages/example/.next/

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v14

.prettierrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"printWidth": 120,
5+
"parser": "typescript"
6+
}

README.md

+58-80
Large diffs are not rendered by default.

docs/README.md

-185
This file was deleted.

docs/connectors/README.md

-7
This file was deleted.

docs/connectors/authereum.md

-22
This file was deleted.

docs/connectors/fortmatic.md

-23
This file was deleted.

0 commit comments

Comments
 (0)