This package was initialized via substreams init
, using the evm-events-calls
template.
substreams build
substreams auth
substreams gui # Get streaming!
substreams registry login # Login to substreams.dev
substreams registry publish # Publish your Substreams to substreams.dev
All of these modules produce data filtered by these contracts:
map_events_calls
This module gets you events and calls
map_events
This module gets you only events that matched.
map_calls
This module gets you only calls that matched.
substreams gui realfun-token-stream-mainnet@v0.2.0 map_meme_token_events
all_events
gives you all the events in a block (from successful transactions), with basic block hash/number/timestamp and transaction hash
substreams gui realfun-token-stream-mainnet@v0.2.0 ethcommon:all_events
all_calls
gives you all the calls in a block (including internal calls), with basic block hash/number/timestamp and transaction hash
substreams gui realfun-token-stream-mainnet@v0.2.0 ethcommon:all_calls
filtered_events
reads from all_events
and applies a filter on the event addresses and signatures.
Supported operators are: logical or ||
, logical and &&
and parenthesis: ()
Addresses to match must be written as 0x-prefixed hexadecimal, lowercase, prefixed by evt_addr:
and signatures by evt_sig:
.
Example: (evt_addr:0x1234... || evt_addr:0x5678...) && evt_sig:0xdeadbeef...
substreams gui realfun-token-stream-mainnet@v0.2.0 ethcommon:filtered_events
filtered_calls
reads from all_calls
and applies a filter on the called contract, the caller and the method 4-bytes signature
Supported operators are: logical or ||
, logical and &&
and parenthesis: ()
Addresses to match must be written as 0x-prefixed hexadecimal, lowercase, prefixed by call_to:
or call_from:
, methods by call_method:
.
Example: (call_to:0x1234... || call_from:0x1234...) && call_method:0xdeadbeef...
substreams gui realfun-token-stream-mainnet@v0.2.0 ethcommon:filtered_calls
filtered_transactions
reads from ethereum blocks and applies a filter on the events (addresses and signatures) as well as calls (from, to and method).
Supported operators are: logical or ||
, logical and &&
and parenthesis: ()
Addresses and signatures to match must be written as 0x-prefixed hexadecimal, lowercase, prefixed by evt_addr:
, evt_sig:
, call_to:
, call_from:
or call_method:
.
Example: ((evt_addr:0x1234... || evt_addr:0x5678...) && evt_sig:0xdeadbeef...) || call_to:0x01010101...
substreams gui realfun-token-stream-mainnet@v0.2.0 ethcommon:filtered_transactions
filtered_events_and_calls
reads from all_calls
and all_events
, then applies a filter to extract the items that interest you, based on called contract, caller, call method, event address and event signature.
Supported operators are: logical or ||
, logical and &&
and parenthesis: ()
Addresses and signatures to match must be written as 0x-prefixed hexadecimal, lowercase, prefixed by evt_addr:
, evt_sig:
, call_to:
, call_from:
or call_method:
.
Example: evt_sig:0x9bb8f83800000000000000000000000000000000000000000000000000000000 || (call_method:0xa9059cbb && call_to:0xdac17f958d2ee523a2206206994597c13d831ec7)
substreams gui realfun-token-stream-mainnet@v0.2.0 ethcommon:filtered_events_and_calls
index_events
sets the following keys on the block:
substreams gui realfun-token-stream-mainnet@v0.2.0 ethcommon:index_events
index_calls
sets the following keys on the block:
substreams gui realfun-token-stream-mainnet@v0.2.0 ethcommon:index_calls
index_events_and_calls
sets the following keys on the block:
substreams gui realfun-token-stream-mainnet@v0.2.0 ethcommon:index_events_and_calls
message
Modules
message
Binary
message
Module
message
Package
message
PackageMetadata
message
ModuleMetadata
message
Clock
message
BlockRef
message
Request
message
Response
message
BlockUndoSignal
message
BlockScopedData
message
SessionInit
message
InitialSnapshotComplete
message
InitialSnapshotData
message
MapModuleOutput
message
StoreModuleOutput
message
OutputDebugInfo
message
ModulesProgress
message
ModuleProgress
message
BlockRange
message
StoreDelta
message
FileDescriptorSet
message
FileDescriptorProto
message
DescriptorProto
message
ExtensionRangeOptions
message
FieldDescriptorProto
message
OneofDescriptorProto
message
EnumDescriptorProto
message
EnumValueDescriptorProto
message
ServiceDescriptorProto
message
MethodDescriptorProto
message
FileOptions
message
MessageOptions
message
FieldOptions
message
OneofOptions
message
EnumOptions
message
EnumValueOptions
message
ServiceOptions
message
MethodOptions
message
UninterpretedOption
message
SourceCodeInfo
message
GeneratedCodeInfo
message
Any
message
Timestamp
message
Duration
message
Block
message
BlockHeader
message
Uint64NestedArray
message
Uint64Array
message
BigInt
message
TransactionTrace
message
AccessTuple
message
TransactionReceipt
message
Log
message
Call
message
StorageChange
message
BalanceChange
message
NonceChange
message
AccountCreation
message
CodeChange
message
GasChange
message
HeaderOnlyBlock
message
BlockWithRefs
message
TransactionTraceWithBlockRef
message
TransactionRefs
message
BlockRef
enum
TransactionTraceStatus
enum
CallType
message
RpcCalls
message
RpcCall
message
RpcResponses
message
RpcResponse
message
DeployRequest
message
Parameter
message
DeployResponse
message
UpdateRequest
message
UpdateResponse
message
InfoRequest
message
InfoResponse
message
SinkProgress
message
PackageInfo
message
ListRequest
message
ListResponse
message
DeploymentWithStatus
message
RemoveRequest
message
RemoveResponse
message
PauseRequest
message
PauseResponse
message
StopRequest
message
StopResponse
message
ResumeRequest
message
ResumeResponse
enum
DeploymentStatus
message
Calls
message
Call
message
Events
message
Event
message
EventsAndCalls
message
Transactions
message
Transaction
enum
DetailLevel
message
Events
message
Calls
message
EventsCalls
message
FactoryContract_MemeTokenCreated
message
FactoryContract_OwnershipTransferred
message
FactoryContract_TreasuryUpdated
message
FactoryContract_AddFeatureToTokenCall
message
FactoryContract_CreateMemeTokenCall
message
FactoryContract_FinalizeTokenCall
message
FactoryContract_RegisterFeatureCall
message
FactoryContract_RegisterThirdPartyCallCall
message
FactoryContract_RemoveFeatureFromTokenCall
message
FactoryContract_RenounceOwnershipCall
message
FactoryContract_SetBasePriceCall
message
FactoryContract_SetBondingFeesCall
message
FactoryContract_SetCreationFeeCall
message
FactoryContract_SetTokenMigratedCall
message
FactoryContract_SetTreasuryCall
message
FactoryContract_TransferOwnershipCall
message
PairContract_Debug
message
PairContract_DebugAddress
message
PairContract_MigrationCompleted
message
PairContract_TokensPurchased
message
PairContract_TokensSold
message
PairContract_BuyTokensCall
message
PairContract_MigrateAndLockCall
message
PairContract_MintCall
message
PairContract_SellTokensCall