Skip to content

Commit ec6b41b

Browse files
authored
enable tsconfig.json strictNullChecks for safer dist (0xsequence#106)
* enable tsconfig.json strictNullChecks for safer dist * enable a few extra safety checks during typechecking
1 parent ed9edb4 commit ec6b41b

Some content is hidden

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

44 files changed

+311
-255
lines changed

packages/api/src/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class ArcadeumAPIClient extends BaseArcadeumAPI {
1515
return new Promise<Response>((resolve, reject) => {
1616
// automatically include jwt auth header to requests
1717
// if its been set on the api client
18-
const headers = {}
18+
const headers: { [key: string]: any } = {}
1919
if (this.jwtAuth && this.jwtAuth.length > 0) {
2020
headers['Authorization'] = `BEARER ${this.jwtAuth}`
2121
}

packages/auth/src/proof.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ export const ValidateSequenceUndeployedWalletProof = (context?: WalletContext):
6666
chainId
6767
)
6868

69-
return { isValid: isValid }
69+
return { isValid: !!isValid }
7070
}
7171
}

packages/auth/src/session.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export class Session implements SessionDump {
9595
return this.auth(net, tries + 1, maxTries)
9696
}
9797

98-
scheduleAuth(net: NetworkConfig): Promise<void> {
98+
scheduleAuth(net: NetworkConfig) {
9999
const url = net.sequenceApiUrl
100100
if (!url) return
101101

packages/bridge/src/bridges/matic-bridge.ts

+30-28
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
6363
connect(networks: NetworkConfig[]): MaticPosBridge {
6464
this.maticNet = networks.find((n) => n.chainId === this.conf.maticId)
6565
this.parentNet = networks.find((n) => n.chainId === this.conf.parentId)
66-
this.maticClient = new ethers.providers.JsonRpcProvider(this.maticNet.rpcUrl)
67-
this.parentClient = new ethers.providers.JsonRpcProvider(this.parentNet.rpcUrl)
66+
this.maticClient = new ethers.providers.JsonRpcProvider(this.maticNet!.rpcUrl)
67+
this.parentClient = new ethers.providers.JsonRpcProvider(this.parentNet!.rpcUrl)
6868
return this
6969
}
7070

@@ -120,14 +120,16 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
120120
// Check if token has child mapped
121121
if (this.isDeposit(from, to)) {
122122
const child = await safeSolve(rootChain.rootToChildToken(token), ethers.constants.AddressZero)
123-
return child && child !== ethers.constants.AddressZero
123+
return !!child && child !== ethers.constants.AddressZero
124124
}
125125

126126
// Check if token has root mapped
127127
if (this.isWithdraw(from, to)) {
128128
const root = await safeSolve(rootChain.childToRootToken(token), ethers.constants.AddressZero)
129-
return root && root !== ethers.constants.AddressZero
129+
return !!root && root !== ethers.constants.AddressZero
130130
}
131+
132+
return false
131133
}
132134

133135
async getMoves(wallet: string, from: providers.BlockTag = 0, to: providers.BlockTag = "latest"): Promise<Move[]> {
@@ -165,11 +167,11 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
165167
}]
166168
}
167169

168-
return undefined
170+
return []
169171
}
170172

171-
completeNative(_from: NetworkConfig, _to: NetworkConfig, _txHash: string, _wallet: string): Promise<providers.TransactionRequest[]> {
172-
return undefined
173+
async completeNative(_from: NetworkConfig, _to: NetworkConfig, _txHash: string, _wallet: string): Promise<providers.TransactionRequest[]> {
174+
return []
173175
}
174176

175177
async _depositsNative(wallet: string, from: providers.BlockTag, to: providers.BlockTag): Promise<MoveNative[]> {
@@ -190,15 +192,15 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
190192

191193
return Promise.all(candidates.map(async (cand) => {
192194
const stateSyncId = await this.getStateSyncId(cand.transactionHash, cand.logIndex + 1)
193-
const isPending = stateSyncId.gte(await lastStateId)
195+
const isPending = stateSyncId!.gte(await lastStateId)
194196

195197
return {
196198
...cand,
197199
completeTx: undefined,
198200
isCompleted: !isPending,
199201
isPending: isPending,
200-
fromChainId: this.parentNet.chainId,
201-
toChainId: this.maticNet.chainId,
202+
fromChainId: this.parentNet!.chainId,
203+
toChainId: this.maticNet!.chainId,
202204
amount: ethers.utils.defaultAbiCoder.decode(['uint256'], cand.data)[0]
203205
}
204206
}))
@@ -212,7 +214,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
212214
return this.isMapped(from, to, token)
213215
}
214216

215-
async estimateERC20(from: NetworkConfig, to: NetworkConfig, token: string): Promise<MoveEstimate> {
217+
async estimateERC20(from: NetworkConfig, to: NetworkConfig, token: string): Promise<MoveEstimate | undefined> {
216218
if (this.isDeposit(from, to)) {
217219
return {
218220
crossTime: MaticPosBridge.POS_TIME_DEPOSIT,
@@ -233,7 +235,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
233235
async moveERC20(from: NetworkConfig, to: NetworkConfig, token: string, dest: string, amount: BigNumberish): Promise<providers.TransactionRequest[]> {
234236
if (this.isMaticToken(token)) {
235237
// Matic token must use the plasma bridge
236-
return undefined
238+
return []
237239
}
238240

239241
if (this.isDeposit(from, to)) {
@@ -259,7 +261,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
259261
}]
260262
}
261263

262-
return undefined
264+
return []
263265
}
264266

265267
async completeERC20(_from: NetworkConfig, _to: NetworkConfig, txHash: string, wallet: string): Promise<providers.TransactionRequest[]> {
@@ -286,14 +288,14 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
286288

287289
return Promise.all(candidates.map(async (cand) => {
288290
const stateSyncId = await this.getStateSyncId(cand.transactionHash, cand.logIndex + 2)
289-
const isPending = stateSyncId.gte(await lastStateId)
291+
const isPending = stateSyncId!.gte(await lastStateId)
290292
return {
291293
...cand,
292294
completeTx: undefined,
293295
isCompleted: !isPending,
294296
isPending: isPending,
295-
fromChainId: this.parentNet.chainId,
296-
toChainId: this.maticNet.chainId,
297+
fromChainId: this.parentNet!.chainId,
298+
toChainId: this.maticNet!.chainId,
297299
token: ethers.utils.defaultAbiCoder.decode(['address'], cand.topics[3])[0],
298300
amount: ethers.utils.defaultAbiCoder.decode(['uint256'], cand.data)[0]
299301
}
@@ -315,15 +317,15 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
315317

316318
return Promise.all(candidates.map(async (cand) => {
317319
const isCompleted = await safeSolve(this.posClient.isERC20ExitProcessed(cand.transactionHash), false)
318-
const completeTx = !isCompleted ? safeSolve(this.completeERC20(this.maticNet, this.parentNet, cand.transactionHash, wallet), undefined) : undefined
320+
const completeTx = !isCompleted ? safeSolve(this.completeERC20(this.maticNet!, this.parentNet!, cand.transactionHash, wallet), undefined) : undefined
319321

320322
return {
321323
...cand,
322324
completeTx: await completeTx,
323325
isCompleted: await isCompleted,
324326
isPending: !isCompleted && !(await completeTx),
325-
fromChainId: this.maticNet.chainId,
326-
toChainId: this.parentNet.chainId,
327+
fromChainId: this.maticNet!.chainId,
328+
toChainId: this.parentNet!.chainId,
327329
token: cand.address,
328330
amount: ethers.utils.defaultAbiCoder.decode(['uint256'], cand.data)[0]
329331
}
@@ -338,7 +340,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
338340
return this.isMapped(from, to, token)
339341
}
340342

341-
async estimateERC1155(from: NetworkConfig, to: NetworkConfig, token: string, ids: BigNumberish[]): Promise<MoveEstimate> {
343+
async estimateERC1155(from: NetworkConfig, to: NetworkConfig, token: string, ids: BigNumberish[]): Promise<MoveEstimate | undefined> {
342344
if (this.isDeposit(from, to)) {
343345
return {
344346
crossTime: MaticPosBridge.POS_TIME_DEPOSIT,
@@ -384,7 +386,7 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
384386
}]
385387
}
386388

387-
return undefined
389+
return []
388390
}
389391

390392
async completeERC1155(from: NetworkConfig, to: NetworkConfig, txHash: string, wallet: string): Promise<ethers.providers.TransactionRequest[]> {
@@ -411,15 +413,15 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
411413

412414
return Promise.all(candidates.map(async (cand) => {
413415
const stateSyncId = await this.getStateSyncId(cand.transactionHash, cand.logIndex + 2)
414-
const isPending = stateSyncId.gte(await lastStateId)
416+
const isPending = stateSyncId!.gte(await lastStateId)
415417
const decodedData = ethers.utils.defaultAbiCoder.decode(['uint256[]', 'uint256[]'], cand.data)
416418
return {
417419
...cand,
418420
completeTx: undefined,
419421
isCompleted: !isPending,
420422
isPending: isPending,
421-
fromChainId: this.parentNet.chainId,
422-
toChainId: this.maticNet.chainId,
423+
fromChainId: this.parentNet!.chainId,
424+
toChainId: this.maticNet!.chainId,
423425
token: ethers.utils.defaultAbiCoder.decode(['address'], cand.topics[3])[0],
424426
ids: decodedData[0],
425427
amounts: decodedData[1]
@@ -435,24 +437,24 @@ export class MaticPosBridge implements BridgeNative, BridgeERC20, BridgeERC1155,
435437
toBlock: to,
436438
topics: [
437439
MaticPosBridge.TRANSFER_ERC1155_TOPIC,
438-
undefined,
440+
'',
439441
ethers.utils.defaultAbiCoder.encode(['address'], [wallet]),
440442
ethers.utils.defaultAbiCoder.encode(['address'], [ethers.constants.AddressZero])
441443
]
442444
})
443445

444446
return Promise.all(candidates.map(async (cand) => {
445447
const isCompleted = await safeSolve(this.posClient.isBatchERC1155ExitProcessed(cand.transactionHash), false)
446-
const completeTx = !isCompleted ? safeSolve(this.completeERC1155(this.maticNet, this.parentNet, cand.transactionHash, wallet), undefined) : undefined
448+
const completeTx = !isCompleted ? safeSolve(this.completeERC1155(this.maticNet!, this.parentNet!, cand.transactionHash, wallet), undefined) : undefined
447449
const decodedData = ethers.utils.defaultAbiCoder.decode(['uint256[]', 'uint256[]'], cand.data)
448450

449451
return {
450452
...cand,
451453
completeTx: await completeTx,
452454
isCompleted: isCompleted,
453455
isPending: !isCompleted && !(await completeTx),
454-
fromChainId: this.maticNet.chainId,
455-
toChainId: this.parentNet.chainId,
456+
fromChainId: this.maticNet!.chainId,
457+
toChainId: this.parentNet!.chainId,
456458
token: cand.address,
457459
amount: ethers.utils.defaultAbiCoder.decode(['uint256'], cand.data)[0],
458460
ids: decodedData[0],

packages/bridge/src/client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class BridgesClient {
2121
return this
2222
}
2323

24-
get(id: string): Bridge {
24+
get(id: string): Bridge | undefined {
2525
return this.bridges.find((b) => b.id() === id)
2626
}
2727

packages/config/src/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export interface WalletConfig {
1818

1919
export interface WalletState {
2020
context: WalletContext
21-
config: WalletConfig
21+
config?: WalletConfig
2222

2323
// the wallet address
2424
address: string

packages/config/src/finder/sequence-utils-finder.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export class SequenceUtilsFinder implements ConfigFinder {
1515
knownConfigs?: WalletConfig[],
1616
ignoreIndex?: boolean,
1717
requireIndex?: boolean
18-
}): Promise<{ config: WalletConfig }> => {
18+
}): Promise<{ config: WalletConfig | undefined }> => {
1919
const { provider, context, ignoreIndex, requireIndex } = args
2020
const address = ethers.utils.getAddress(args.address)
2121

@@ -37,7 +37,7 @@ export class SequenceUtilsFinder implements ConfigFinder {
3737
)
3838
)[0]
3939

40-
const authContract = new Contract(context.sequenceUtils, walletContracts.sequenceUtils.abi, this.authProvider)
40+
const authContract = new Contract(context.sequenceUtils!, walletContracts.sequenceUtils.abi, this.authProvider)
4141

4242
if (currentImplementation === context.mainModuleUpgradable) {
4343
const foundConfig = knownConfigs.find((k) => imageHash(k) === currentImageHash[0])
@@ -101,7 +101,7 @@ export class SequenceUtilsFinder implements ConfigFinder {
101101
const { signer, context, ignoreIndex, requireIndex } = args
102102
if (requireIndex && ignoreIndex) throw Error('Can\'t ignore index and require index')
103103

104-
const authContract = new Contract(context.sequenceUtils, walletContracts.sequenceUtils.abi, this.authProvider)
104+
const authContract = new Contract(context.sequenceUtils!, walletContracts.sequenceUtils.abi, this.authProvider)
105105
const logBlockHeight = ignoreIndex ? 0 : (await authContract.lastSignerUpdate(signer)).toNumber()
106106
if (requireIndex && logBlockHeight === 0) return { wallet: undefined }
107107
const filter = authContract.filters.RequiredSigner(null, signer)

packages/deployer/src/UniversalDeployer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { EOA_UNIVERSAL_DEPLOYER_ADDRESS, UNIVERSAL_DEPLOYER_ADDRESS, UNIVERSAL_D
66
import { ContractInstance } from './types'
77
import { createLogger, Logger } from './utils/logger'
88

9-
let prompt: Logger = undefined
9+
let prompt: Logger
1010
createLogger().then(logger => prompt = logger)
1111

1212
ethers.utils.Logger.setLogLevel(ethers.utils.Logger.levels.OFF);

packages/deployer/src/utils/logger.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import { isNode } from '@0xsequence/utils'
22

33
export interface Logger {
4-
start(text?: string)
5-
stop()
6-
succeed(text?: string)
7-
fail(text?: string)
8-
warn(text?: string)
9-
info(text?: string)
4+
start(text?: string): void
5+
stop(): void
6+
succeed(text?: string): void
7+
fail(text?: string): void
8+
warn(text?: string): void
9+
info(text?: string): void
1010
}
1111

1212
const loadOra = () => import('ora')

0 commit comments

Comments
 (0)