Skip to content

Commit

Permalink
6 decimals
Browse files Browse the repository at this point in the history
  • Loading branch information
brtkx committed Oct 23, 2024
1 parent 1d5a12f commit 69cba21
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
args: >-
${{
(matrix.test.type == 'orbit-eth') && '--l3node --l3-token-bridge' ||
(matrix.test.type == 'orbit-custom-16dec' && '--l3-fee-token --l3-fee-token-decimals 16') ||
(matrix.test.type == 'orbit-custom-6dec' && '--l3-fee-token --l3-fee-token-decimals 6') ||
(matrix.test.type == 'orbit-custom-18dec' && '--l3-fee-token') ||
(matrix.test.type == 'orbit-custom-20dec' && '--l3-fee-token --l3-fee-token-decimals 20') ||
''
Expand All @@ -115,7 +115,7 @@ jobs:
command: >-
${{
(matrix.test.type == 'orbit-eth') && 'yarn test:e2e:orbit --browser chrome' ||
(matrix.test.type == 'orbit-custom-16dec' && 'yarn test:e2e:orbit:custom-gas-token --browser chrome') ||
(matrix.test.type == 'orbit-custom-6dec' && 'yarn test:e2e:orbit:custom-gas-token --browser chrome') ||
(matrix.test.type == 'orbit-custom-18dec' && 'yarn test:e2e:orbit:custom-gas-token --browser chrome') ||
(matrix.test.type == 'orbit-custom-20dec' && 'yarn test:e2e:orbit:custom-gas-token --browser chrome') ||
(matrix.test.type == 'cctp' && 'yarn test:e2e:cctp --browser chrome') ||
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/formatSpecfiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,25 +12,21 @@ switch (testType) {
...spec,
type: "regular",
typeName: "",
testnodeArgs: "",
});
tests.push({
...spec,
type: "orbit-eth",
typeName: "with L3 (ETH)",
testnodeArgs: "--l3node --l3-token-bridge",
});
tests.push({
...spec,
type: "orbit-custom-16dec",
typeName: "with L3 (16 decimals custom)",
testnodeArgs: "--l3node --l3-token-bridge --l3-fee-token --l3-fee-token-decimals 16",
type: "orbit-custom-6dec",
typeName: "with L3 (6 decimals custom)",
});
tests.push({
...spec,
type: "orbit-custom-18dec",
typeName: "with L3 (18 decimals custom)",
testnodeArgs: "--l3node --l3-token-bridge --l3-fee-token",
});
tests.push({
...spec,
Expand Down
11 changes: 11 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,17 @@
async-mutex "^0.4.0"
ethers "^5.1.0"

"@arbitrum/sdk@^4.0.2-beta.0":
version "4.0.2-beta.0"
resolved "https://registry.yarnpkg.com/@arbitrum/sdk/-/sdk-4.0.2-beta.0.tgz#864e38797d9f25e0b0d6a5f0147d60bd5b5db3b6"
integrity sha512-Q22DqEYzlkspvx6h9LUgTFgpUr9PNtPiyp4hTaODOdNl+cbpVAz6G9x04iMAnNia9sP0KffhDD5WxS4CzFrFFw==
dependencies:
"@ethersproject/address" "^5.0.8"
"@ethersproject/bignumber" "^5.1.1"
"@ethersproject/bytes" "^5.0.8"
async-mutex "^0.4.0"
ethers "^5.1.0"

"@babel/[email protected]":
version "7.12.11"
resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"
Expand Down

0 comments on commit 69cba21

Please sign in to comment.