@@ -125,13 +125,6 @@ sasl_conf = {
125125### Subscribe to particular topic(s)
126126
127127To receive messages you first create consumer and subscribe it to a topic or list of topics.
128- Topic contains messages of the same type, for example:
129-
130- - tron.transactions contains messages with transactions, smart contract calls and events in Tron blockchain
131- - tron.broadcasted.transactions contains messages from mempool broadcasted channel ( before they included in blocks )
132- - tron.dextrades contains trades happen on Tron blockchain
133- - solana.dextrades contains trades happen on Solana blockchain
134- - and so on...
135128
136129General pattern of the topic name is:
137130
@@ -149,13 +142,9 @@ Our multi-chain [Price Index Streams](https://docs.bitquery.io/docs/trading/pric
149142MESSAGE_TYPE is specific on blockchain, most blockchain has topics for:
150143
151144- dextrades - events from DEX trading
152- - dexorders - events on creation / changing status of DEX orders
153- - dexpools - events on creation / changing status of DEX pools
154145- transactions - events, calls, transactions
155- - transfers - token and coin transfers events
156- - instructions - details on instructions and associated accounts, transaction details
146+ - tokens - token and coin transfers events
157147- raw - blocks or transactions directly from node
158- - instruction_balance_updates - instruction-level information on balance updates for accounts and token supply updates ( for solana )
159148
160149Refer to [ Bitquery Streaming Protobuf] ( https://github.com/bitquery/streaming_protobuf ) schemas for structure.
161150
@@ -166,14 +155,45 @@ Refer to [Bitquery Streaming Protobuf](https://github.com/bitquery/streaming_pro
166155- ` *.broadcasted.transactions.proto ` → ` ParsedAbiBlockMessage `
167156- ` *.broadcasted.tokens.proto ` → ` TokenBlockMessage `
168157- ` *.broadcasted.dextrades.proto ` → ` DexBlockMessage `
169- - ` *.broadcasted.raw.proto ` → ` BlockMessage ` ( Not yet deployed)
158+ - ` *.broadcasted.raw.proto ` → ` BlockMessage `
170159
171160** Committed Blocks:**
172161
173162- ` *.transactions.proto `
174163- ` *.tokens.proto `
175164- ` *.dextrades.proto `
176- - ` *.raw.proto ` (Coming soon)
165+ - ` *.raw.proto `
166+
167+ ## Complete List of Topics
168+
169+ ### EVM chains
170+
171+ (For mempool data, add .broadcasted after chain name)
172+
173+ - eth.transactions.proto
174+ - eth.tokens.proto
175+ - eth.dextrades.proto
176+ - bsc.transactions.proto
177+ - bsc.tokens.proto
178+ - bsc.dextrades.proto
179+ - base.transactions.proto
180+ - base.tokens.proto
181+ - base.dextrades.proto
182+ - matic.transactions.proto
183+ - matic.tokens.proto
184+ - matic.dextrades.proto
185+ - optimism.transactions.proto
186+ - optimism.tokens.proto
187+ - optimism.dextrades.proto
188+
189+ ### Other Chains
190+
191+ - tron.transactions.proto
192+ - tron.tokens.proto
193+ - tron.dextrades.proto
194+ - solana.transactions.proto
195+ - solana.tokens.proto
196+ - solana.dextrades.proto
177197
178198Contact our support team for the topics that you can connect to for your specific needs.
179199
0 commit comments