Skip to content

Multichain

Transpose supports the following chains: ethereum, polygon, goerli, scroll, arbitrum.

More will be added soon! If we don't have a chain you're looking for, please reach out to the team.

Querying chains

All tables are namespaced with the target chain. As a simple example, getting recent blocks on Ethereum vs Polygon:

SQL Query
SELECT * FROM ethereum.blocks ORDER BY timestamp desc LIMIT 10;

curl --request POST \
     --data '{"sql": "SELECT * FROM ethereum.blocks ORDER BY timestamp desc LIMIT 10;"}' \
     --url 'https://api.transpose.io/sql' \
     --header 'Content-Type: application/json' \
     --header 'x-api-key: BtRVYj7dgnYUcr1gSSfWhmrTShIb8RBG' \
SQL Query
SELECT * FROM polgyon.blocks ORDER BY timestamp desc LIMIT 10;

curl --request POST \
     --data '{"sql": "SELECT * FROM polgyon.blocks ORDER BY timestamp desc LIMIT 10;"}' \
     --url 'https://api.transpose.io/sql' \
     --header 'Content-Type: application/json' \
     --header 'x-api-key: BtRVYj7dgnYUcr1gSSfWhmrTShIb8RBG' \

Got questions? Join our Discord

Discord is the primary home of the Transpose developer community. Join us to ask questions, share your work, and get help.