Skip to content

Commit 28212a6

Browse files
committed
Upgrade dependencies
1 parent 7e21844 commit 28212a6

File tree

4 files changed

+2809
-5663
lines changed

4 files changed

+2809
-5663
lines changed

packages/common-ts/package.json

Lines changed: 32 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -16,53 +16,49 @@
1616
"test:watch": "jest --watch --passWithNoTests --detectOpenHandles --verbose"
1717
},
1818
"dependencies": {
19-
"@ethersproject/bignumber": "5.4.1",
20-
"@ethersproject/contracts": "5.4.1",
21-
"@ethersproject/transactions": "5.4.0",
22-
"@graphprotocol/contracts": "1.6.0",
19+
"@graphprotocol/contracts": "1.9.0",
2320
"@graphprotocol/pino-sentry-simple": "0.7.1",
24-
"@urql/core": "1.13.1",
25-
"@urql/exchange-execute": "1.0.1",
26-
"body-parser": "1.19.0",
21+
"@urql/core": "2.3.6",
22+
"@urql/exchange-execute": "1.2.2",
23+
"body-parser": "1.19.1",
2724
"bs58": "4.0.1",
2825
"cors": "2.8.5",
29-
"cross-fetch": "3.0.6",
30-
"ethers": "5.4.4",
26+
"cross-fetch": "3.1.4",
27+
"ethers": "5.5.2",
3128
"express": "4.17.1",
32-
"graphql": "15.4.0",
33-
"graphql-tag": "2.11.0",
34-
"helmet": "4.1.1",
29+
"graphql": "16.1.0",
30+
"graphql-tag": "2.12.6",
31+
"helmet": "4.6.0",
3532
"morgan": "1.10.0",
3633
"ngeohash": "0.6.3",
37-
"pg": "8.4.2",
38-
"pg-hstore": "2.3.3",
39-
"pino": "6.7.0",
40-
"pino-multi-stream": "5.1.1",
41-
"prom-client": "12.0.0",
42-
"sequelize": "6.3.5"
34+
"pg": "8.7.1",
35+
"pg-hstore": "2.3.4",
36+
"pino": "7.6.0",
37+
"pino-multi-stream": "6.0.0",
38+
"prom-client": "14.0.1",
39+
"sequelize": "6.12.0"
4340
},
4441
"devDependencies": {
4542
"@types/bs58": "4.0.1",
46-
"@types/cors": "2.8.8",
47-
"@types/express": "4.17.8",
43+
"@types/cors": "2.8.12",
44+
"@types/express": "4.17.13",
4845
"@types/jest": "26.0.15",
4946
"@types/lodash.isequal": "4.5.5",
50-
"@types/morgan": "1.9.2",
51-
"@types/ngeohash": "0.6.2",
52-
"@types/node": "14.14.6",
53-
"@types/pino": "6.3.3",
54-
"@types/pino-multi-stream": "^5.1.0",
55-
"@types/supertest": "2.0.10",
56-
"@typescript-eslint/eslint-plugin": "4.6.0",
57-
"@typescript-eslint/parser": "4.6.0",
58-
"eslint": "7.12.1",
59-
"jest": "26.6.1",
60-
"lerna": "3.22.1",
61-
"nock": "13.0.4",
62-
"prettier": "2.1.2",
63-
"supertest": "6.0.0",
64-
"ts-jest": "26.4.3",
65-
"typescript": "4.0.5"
47+
"@types/morgan": "1.9.3",
48+
"@types/ngeohash": "0.6.4",
49+
"@types/node": "17.0.1",
50+
"@types/pino": "7.0.5",
51+
"@types/pino-multi-stream": "5.1.3",
52+
"@types/supertest": "2.0.11",
53+
"@typescript-eslint/eslint-plugin": "5.8.0",
54+
"@typescript-eslint/parser": "5.8.0",
55+
"eslint": "8.5.0",
56+
"jest": "27.4.5",
57+
"nock": "13.2.1",
58+
"prettier": "2.5.1",
59+
"supertest": "6.1.6",
60+
"ts-jest": "27.1.2",
61+
"typescript": "4.1.6"
6662
},
6763
"resolutions": {
6864
"scrypt": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz"

packages/common-ts/src/contracts/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
import { providers } from 'ethers'
2-
import { Signer } from 'ethers'
1+
import { providers, Signer } from 'ethers'
32

43
// Contract addresses
54
// eslint-disable-next-line @typescript-eslint/no-var-requires

packages/common-ts/src/eventual/eventual.ts

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@ export type Reducer<T, U> = (acc: U, t: T) => Awaitable<U>
88
// eslint-disable-next-line @typescript-eslint/no-explicit-any
99
export type NamedEventuals<T> = { [k: string]: Eventual<any> } & { [K in keyof T]: T[K] }
1010

11-
export type Join<T> = Eventual<
12-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
13-
{ [key in keyof T]: T[key] extends Eventual<infer U> ? U : any }
14-
>
11+
export type Join<T> =
12+
Eventual<// eslint-disable-next-line @typescript-eslint/no-explicit-any
13+
{ [key in keyof T]: T[key] extends Eventual<infer U> ? U : any }>
1514

16-
type MutableJoin<T> = WritableEventual<
17-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
18-
{ [key in keyof T]: T[key] extends Eventual<infer U> ? U : any }
19-
>
15+
type MutableJoin<T> =
16+
WritableEventual<// eslint-disable-next-line @typescript-eslint/no-explicit-any
17+
{ [key in keyof T]: T[key] extends Eventual<infer U> ? U : any }>
2018

2119
export interface TryMapOptions {
2220
// eslint-disable-next-line @typescript-eslint/no-explicit-any

0 commit comments

Comments
 (0)