-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix/remove-extra-deps
- Loading branch information
Showing
18 changed files
with
1,489 additions
and
1,689 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 |
---|---|---|
|
@@ -4,6 +4,7 @@ on: | |
branches: | ||
- main | ||
pull_request: | ||
types: [opened, synchronize, reopened] | ||
branches: | ||
- '**' | ||
jobs: | ||
|
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,3 +1,3 @@ | ||
{ | ||
"packages/sdk": "1.1.2" | ||
"packages/sdk": "1.1.3" | ||
} |
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,38 +1,35 @@ | ||
{ | ||
// This is an alias to @tsconfig/node12: https://github.com/tsconfig/bases | ||
"extends": "ts-node/node12/tsconfig.json", | ||
|
||
// Most ts-node options can be specified here using their programmatic names. | ||
"ts-node": { | ||
// It is faster to skip typechecking. | ||
// Remove if you want ts-node to do typechecking. | ||
"transpileOnly": true, | ||
|
||
"files": true, | ||
|
||
"compilerOptions": { | ||
// compilerOptions specified here will override those declared below, | ||
// but *only* in ts-node. Useful if you want ts-node and tsc to use | ||
// different options with a single tsconfig.json. | ||
} | ||
}, | ||
"compilerOptions": { | ||
"target": "ES2017", | ||
"outDir": "dist", | ||
"module": "commonjs", | ||
"allowJs": true, | ||
"composite": true, | ||
"target": "ES2017", | ||
"outDir": "dist", | ||
"module": "commonjs", | ||
"allowJs": true, | ||
"composite": true, | ||
"declaration": true, | ||
"sourceMap": true, | ||
"declarationMap": true, | ||
"resolveJsonModule": true, | ||
"resolveJsonModule": true, | ||
"skipLibCheck": true, | ||
"moduleResolution": "node", | ||
"strict": true, | ||
"jsx": "react-jsx", | ||
"esModuleInterop": true, | ||
"downlevelIteration": true, | ||
"moduleResolution": "node", | ||
"strict": true, | ||
"jsx": "react-jsx", | ||
"esModuleInterop": true, | ||
"downlevelIteration": true, | ||
"allowSyntheticDefaultImports": true, | ||
"forceConsistentCasingInFileNames": true | ||
}, | ||
"forceConsistentCasingInFileNames": true | ||
} | ||
} |
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,33 +1,33 @@ | ||
{ | ||
"relayer": {}, | ||
"relayer": {}, | ||
"chains": [ | ||
{ | ||
"id": 23, | ||
"from": "0xff93B45308FD417dF303D6515aB04D9e89a750Ca", | ||
"name": "evm1", | ||
"type": "evm", | ||
"endpoint": "http://node1-1:8544", | ||
"bridge": "0x62877dDCd49aD22f5eDfc6ac108e9a4b5D2bD88B", | ||
"erc20Handler": "0x3167776db165D8eA0f51790CA2bbf44Db5105ADF", | ||
"erc721Handler": "0x3f709398808af36ADBA86ACC617FeB7F5B7B193E", | ||
"genericHandler": "0x2B6Ab4b880A45a07d83Cf4d664Df4Ab85705Bc07", | ||
"gasLimit": 9000000, | ||
"maxGasPrice": 20000000000, | ||
"blockConfirmations": 2 | ||
}, | ||
{ | ||
"id": 24, | ||
"from": "0xff93B45308FD417dF303D6515aB04D9e89a750Ca", | ||
"name": "evm1", | ||
"type": "evm", | ||
"endpoint": "http://node2-1:8553", | ||
"bridge": "0x62877dDCd49aD22f5eDfc6ac108e9a4b5D2bD88B", | ||
"erc20Handler": "0x3167776db165D8eA0f51790CA2bbf44Db5105ADF", | ||
"erc721Handler": "0x3f709398808af36ADBA86ACC617FeB7F5B7B193E", | ||
"genericHandler": "0x2B6Ab4b880A45a07d83Cf4d664Df4Ab85705Bc07", | ||
"gasLimit": 9000000, | ||
"maxGasPrice": 20000000000, | ||
"blockConfirmations": 2 | ||
} | ||
] | ||
{ | ||
"id": 23, | ||
"from": "0xff93B45308FD417dF303D6515aB04D9e89a750Ca", | ||
"name": "evm1", | ||
"type": "evm", | ||
"endpoint": "http://node1-1:8544", | ||
"bridge": "0x62877dDCd49aD22f5eDfc6ac108e9a4b5D2bD88B", | ||
"erc20Handler": "0x3167776db165D8eA0f51790CA2bbf44Db5105ADF", | ||
"erc721Handler": "0x3f709398808af36ADBA86ACC617FeB7F5B7B193E", | ||
"genericHandler": "0x2B6Ab4b880A45a07d83Cf4d664Df4Ab85705Bc07", | ||
"gasLimit": 9000000, | ||
"maxGasPrice": 20000000000, | ||
"blockConfirmations": 2 | ||
}, | ||
{ | ||
"id": 24, | ||
"from": "0xff93B45308FD417dF303D6515aB04D9e89a750Ca", | ||
"name": "evm1", | ||
"type": "evm", | ||
"endpoint": "http://node2-1:8553", | ||
"bridge": "0x62877dDCd49aD22f5eDfc6ac108e9a4b5D2bD88B", | ||
"erc20Handler": "0x3167776db165D8eA0f51790CA2bbf44Db5105ADF", | ||
"erc721Handler": "0x3f709398808af36ADBA86ACC617FeB7F5B7B193E", | ||
"genericHandler": "0x2B6Ab4b880A45a07d83Cf4d664Df4Ab85705Bc07", | ||
"gasLimit": 9000000, | ||
"maxGasPrice": 20000000000, | ||
"blockConfirmations": 2 | ||
} | ||
] | ||
} |
Oops, something went wrong.