Sushi-91.Swap Token Pairs on Polygon
-- Q91. Create a document that includes all addresses for all Swap pairs on polygon for sushi, plus the addresses of the two tokens belonging to each pair. If you are using sources from sushi github, please include the link.
Methodology
- Find all the swap token pairs from https://analytics-polygon.sushi.com/
- Go to each link for the Top 15 Pair By Liquidity and fill in the respective fields in the SQL.
- Getting all the 191 pairs should be easy using a website scraper.
- I should be able to help write a script and get all 191 pairs if needed, but here are the Top 15 by liquidity.
SQL
select 'USDC-BCT' as pair, '0x2791bca1f2de4661ed88a30c99a7a9449aa84174' as token_0, '0x2f800db0fdb5223b3c3f354886d907a671414a7f' as token_1, '0x1e67124681b402064cd0abe8ed1b5c79d2e02f64' as pool_address union
select 'USDC-GDDY' as pair, '0x2791bca1f2de4661ed88a30c99a7a9449aa84174' as token_0, '0x67eb41a14c0fe5cd701fc9d5a3d6597a72f641a6' as token_1, '0xde990994309bc08e57aca82b1a19170ad84323e8' as pool_address union
select 'USDC-KLIMA' as pair, '0x2791bca1f2de4661ed88a30c99a7a9449aa84174' as token_0, '0x4e78011ce80ee02d2c3e649fb657e45898257815' as token_1, '0x5786b267d35f9d011c4750e0b0ba584e1fdbead1' as pool_address union
select 'BCT-KLIMA' as pair, '0x2f800db0fdb5223b3c3f354886d907a671414a7f' as token_0, '0x4e78011ce80ee02d2c3e649fb657e45898257815' as token_1, '0x9803c7ae526049210a1725f7487af26fe2c24614' as pool_address union
select 'USDC-WETH' as pair, '0x2791bca1f2de4661ed88a30c99a7a9449aa84174' as token_0, '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619' as token_1, '0x34965ba0ac2451a34a0471f04cca3f990b8dea27' as pool_address union
select 'USDC-OCAVU' as pair, '0x2791bca1f2de4661ed88a30c99a7a9449aa84174' as token_0, '0xf796969fa47fb0748c80b8b153cbb895e88cbd54' as token_1, '0x73a041fef8271c619791e0af6a6224945b7a446f' as pool_address union
select 'USDC-NCT' as pair, '0x2791bca1f2de4661ed88a30c99a7a9449aa84174' as token_0, '0xd838290e877e0188a4a44700463419ed96c16107' as token_1, '0xdb995f975f1bfc3b2157495c47e4efb31196b2ca' as pool_address union
select 'WETH-DAI' as pair, '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619' as token_0, '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063' as token_1, '0x6ff62bfb8c12109e8000935a6de54dad83a4f39f' as pool_address union
select 'NXD-USDT' as pair, '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063' as token_0, '0xc2132d05d31c914a87c6611c10748aeb04b58e8f' as token_1, '0x999fc000f3f5176306c0753bad01d6a37644feef' as pool_address union
select 'USDC-AURUM' as pair, '0x2791bca1f2de4661ed88a30c99a7a9449aa84174' as token_0, '0x34d4ab47bee066f361fa52d792e69ac7bd05ee23' as token_1, '0xabee7668a96c49d27886d1a8914a54a5f9805041' as pool_address union
select 'USDC-POP' as pair, '0x2791bca1f2de4661ed88a30c99a7a9449aa84174' as token_0, '0xc5b57e9a1e7914fda753a88f24e5703e617ee50c' as token_1, '0xe8654f2b0a038a01bc273a2a7b7c48a76c0e58c5' as pool_address union
select 'WETH-USDT' as pair, '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619' as token_0, '0xc2132d05d31c914a87c6611c10748aeb04b58e8f' as token_1, '0xc2755915a85c6f6c1c0f3a86ac8c058f11caa9c9' as pool_address union
select 'GFC-WETH' as pair, '0x071ac29d569a47ebffb9e57517f855cb577dcc4c' as token_0, '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619' as token_1, '0xd8e7d368ab9bdf0010a9934b0e801b3f38cecef6' as pool_address union
select 'WETH-GET' as pair, '0x7ceb23fd6bc0add59e62ac25578270cff1b9f619' as token_0, '0xdb725f82818de83e99f1dac22a9b5b51d3d04dd4' as token_1, '0x55bc7d9e44b730c4a42b52c818c805476156d9c9' as pool_address union
select 'DAI-USV' as pair, '0x8f3cf7ad23cd3cadbd9735aff958023239c6a063' as token_0, '0xac63686230f64bdeaf086fe6764085453ab3023f' as token_1, '0xc16e382aa7353aad0f598856afd9a93513542970' as pool_address