trustwallet-assets/script/erc20_to_checksum.ts
xion30 5892457e09
add logo in hashthereum (#1508)
* add files via upload

* STK Coin (STK)

* Checksum test

* Add wrong asset naming

* Add script checking logo extension

Co-authored-by: Mykola <kolya182@gmail.com>
2020-03-20 13:48:55 -07:00

10 lines
331 B
TypeScript

import { ethSidechains, readDirSync, getChainAssetsPath } from "../src/test/helpers"
import { checksumAssetsFolder } from './format_files_name'
ethSidechains.forEach(chain => {
const assetsPath = getChainAssetsPath(chain)
readDirSync(assetsPath).forEach(addr => {
checksumAssetsFolder(assetsPath, addr)
})
})