diff --git a/blockchains/ethereum/assets/0x27DC43004F0FE65030be5ef809E843e72035c0F1/logo.png b/blockchains/ethereum/assets/0x27DC43004F0FE65030be5ef809E843e72035c0F1/logo.png new file mode 100644 index 000000000..464cab6d7 Binary files /dev/null and b/blockchains/ethereum/assets/0x27DC43004F0FE65030be5ef809E843e72035c0F1/logo.png differ diff --git a/blockchains/ethereum/assets/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F/logo.png b/blockchains/ethereum/assets/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F/logo.png new file mode 100644 index 000000000..ec66326ac Binary files /dev/null and b/blockchains/ethereum/assets/0x78002d01A35E1098E1DC8f50b8182EE08b632f9F/logo.png differ diff --git a/blockchains/ethereum/assets/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5/logo.png b/blockchains/ethereum/assets/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5/logo.png new file mode 100644 index 000000000..397a4d125 Binary files /dev/null and b/blockchains/ethereum/assets/0xD7C81C98B9E78EAEa4f146Fe24974b7E9866B2B5/logo.png differ diff --git a/blockchains/ethereum/assets/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD/logo.png b/blockchains/ethereum/assets/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD/logo.png new file mode 100644 index 000000000..fb4dcd2f6 Binary files /dev/null and b/blockchains/ethereum/assets/0xa59cA48E4799CD1f8e9d251769Bf226F4CAA48eD/logo.png differ diff --git a/blockchains/ethereum/assets/0xca9d97c6C7D5a0cE89371880037cc23866e2264d/logo.png b/blockchains/ethereum/assets/0xca9d97c6C7D5a0cE89371880037cc23866e2264d/logo.png new file mode 100644 index 000000000..5d544d4d4 Binary files /dev/null and b/blockchains/ethereum/assets/0xca9d97c6C7D5a0cE89371880037cc23866e2264d/logo.png differ diff --git a/script/action/allowlists.ts b/script/action/allowlists.ts index a9a1eb6c7..67ced3f49 100644 --- a/script/action/allowlists.ts +++ b/script/action/allowlists.ts @@ -77,6 +77,8 @@ async function checkUpdateAllowDenyList(chain: string, checkOnly: boolean ): Pro // update writeFileSync(allowlistPath, newAllowText); writeFileSync(denylistPath, newDenyText); + writeFileSync(allowlistPath.replace("allow", "white"), newAllowText); // interim + writeFileSync(denylistPath.replace("deny", "black"), newDenyText); // interim console.log(`Updated allow and denylists for chain ${chain}`); } }