chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:13 -08:00
parent 43a7b88e2a
commit 041fae1574
223 changed files with 12940 additions and 11756 deletions

View File

@@ -0,0 +1,14 @@
-- Revert logo_url to previous values (Trust Wallet / ethereum.org)
UPDATE tokens SET logo_url = 'https://raw.githubusercontent.com/ethereum/ethereum.org/main/static/images/eth-diamond-black.png', updated_at = NOW()
WHERE chain_id = 138 AND LOWER(address) IN (
LOWER('0x3304b747E565a97ec8AC220b0B6A1f6ffDB837e6'),
LOWER('0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2'),
LOWER('0xf4BB2e28688e89fCcE3c0580D37d36A7672E8A9f'),
LOWER('0xb7721dD53A8c629d9f1Ba31a5819AFe250002b03')
);
UPDATE tokens SET logo_url = 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png', updated_at = NOW()
WHERE chain_id = 138 AND LOWER(address) = LOWER('0x93E66202A11B1772E55407B32B44e5Cd8eda7f22');
UPDATE tokens SET logo_url = 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png', updated_at = NOW()
WHERE chain_id = 138 AND LOWER(address) = LOWER('0xf22258f57794CC8E06237084b353Ab30fFfa640b');

View File

@@ -0,0 +1,20 @@
-- Update token logo_url to IPFS-hosted logos (Pinata)
-- Addresses from ipfs-manifest.json addressToUrl
UPDATE tokens SET logo_url = 'https://ipfs.io/ipfs/QmPZuycjyJEe2otREuQ5HirvPJ8X6Yc6MBtwz1VhdD79pY', updated_at = NOW()
WHERE chain_id = 138 AND LOWER(address) = LOWER('0x3304b747E565a97ec8AC220b0B6A1f6ffDB837e6');
UPDATE tokens SET logo_url = 'https://ipfs.io/ipfs/Qma3FKtLce9MjgJgWbtyCxBiPjJ6xi8jGWUSKNS5Jc2ong', updated_at = NOW()
WHERE chain_id = 138 AND LOWER(address) = LOWER('0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2');
UPDATE tokens SET logo_url = 'https://ipfs.io/ipfs/QmanDFPHxnbKd6SSNzzXHf9GbpL9dLXSphxDZSPPYE6ds4', updated_at = NOW()
WHERE chain_id = 138 AND LOWER(address) = LOWER('0xf4BB2e28688e89fCcE3c0580D37d36A7672E8A9f');
UPDATE tokens SET logo_url = 'https://ipfs.io/ipfs/QmenWcmfNGfssz4HXvrRV912eZDiKqLTt6z2brRYuTGz9A', updated_at = NOW()
WHERE chain_id = 138 AND LOWER(address) = LOWER('0xb7721dD53A8c629d9f1Ba31a5819AFe250002b03');
UPDATE tokens SET logo_url = 'https://ipfs.io/ipfs/QmRfhPs9DcyFPpGjKwF6CCoVDWUHSxkQR34n9NK7JSbPCP', updated_at = NOW()
WHERE chain_id = 138 AND LOWER(address) = LOWER('0x93E66202A11B1772E55407B32B44e5Cd8eda7f22');
UPDATE tokens SET logo_url = 'https://ipfs.io/ipfs/QmNPq4D5JXzurmi9jAhogVMzhAQRk1PZ1r9H3qQUV9gjDm', updated_at = NOW()
WHERE chain_id = 138 AND LOWER(address) = LOWER('0xf22258f57794CC8E06237084b353Ab30fFfa640b');