Skip to content

Commit

Permalink
Merge branch 'main' into titan-sepolia
Browse files Browse the repository at this point in the history
  • Loading branch information
SonYoungsung committed Apr 5, 2024
2 parents 04ddd41 + 863b5ad commit a6213c8
Show file tree
Hide file tree
Showing 7 changed files with 25,317 additions and 25,479 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- name: Validate token list
if: ${{ steps.changed_tokens.outputs.result != '' }}
run: |
pnpm validate --datadir ./data --tokens "${{ steps.changed_tokens.outputs.result }}" 2> err.txt 1> std.txt
pnpm validate --datadir ./tokens/data --tokens "${{ steps.changed_tokens.outputs.result }}" 2> err.txt 1> std.txt
- name: Validate contract list
run: pnpm validate-contracts
Expand Down
5 changes: 2 additions & 3 deletions bin/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ program
program
.command('validate-contracts')
.description('Validate contractlist data files')
.action(async (options) => {
.action(async () => {
const results = await validateContractsList()

const validationResultsFilePath = 'validation_results.txt'
Expand All @@ -95,8 +95,7 @@ program
fs.writeFileSync(
validationResultsFilePath,
`Below are the results from running validation for the contract changes. To ` +
`re-run the validation locally run: ` +
`pnpm validate --datadir ./data --tokens ${options.tokens}\n\n`
`re-run the validation locally run: `
)
}

Expand Down
Loading

0 comments on commit a6213c8

Please sign in to comment.