diff --git a/blockchains/ethereum/assets/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0/logo.png b/blockchains/ethereum/assets/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0/logo.png new file mode 100644 index 000000000..729f50874 Binary files /dev/null and b/blockchains/ethereum/assets/0x521A2aC7b33b09fA21A1aD7C040F4e1b5912C1d0/logo.png differ diff --git a/script/arrange_files.ts b/script/arrange_files.ts index 180870a97..5d868546e 100644 --- a/script/arrange_files.ts +++ b/script/arrange_files.ts @@ -38,7 +38,7 @@ ethSidechains.forEach(chain => { }) }) -// Moves asset/0xXX...XX.png => assets/blockchains/assets/0xXX...XX/logo.png +// Moves assets/0xXX...XX.png => assets/blockchains/assets/0xXX...XX/logo.png getRootDirFilesList().forEach(async file => { const fileName = getFileName(file) if(isImage(file) && !rootDirAllowedFiles.includes(file) && isEthereumAddress(fileName)) { @@ -49,7 +49,3 @@ getRootDirFilesList().forEach(async file => { fs.renameSync(`./${file}`, `${ethreumAssetsPath}/${checksum}/${logo}`) } }); - - - -