Skip to content

Commit

Permalink
Add default Paima execution plan
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienGllmt committed Apr 28, 2024
1 parent 2eaece0 commit bbfec47
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions indexer/execution_plans/paima.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# This file defines which tasks are used when parsing blocks
# Creating your own execution plan with the tasks you need for your application
# Format follows the TOML format: https://toml.io/en/

# Note: the order you specify tasks in this file matters
# ex: if task Foo depends on task Bar, place Bar first in the list

# You can find task the task name by looking at the TASK_NAME field inside the task
# Some tasks may allow extra parameters that you can specify in this file

[GenesisBlockTask]
include_payload = false

[GenesisTransactionTask]
include_payload = true

[ByronBlockTask]
readonly = false
include_payload = false

[ByronTransactionTask]
readonly = false
include_payload = true

[ByronAddressTask]

[ByronOutputTask]

[ByronInputTask]

[MultieraBlockTask]
readonly = false
include_payload = false

[MultieraTransactionTask]
readonly = false
include_payload = true

[MultieraMetadataTask]
readonly = false

[MultieraAddressTask]

[MultieraOutputTask]
readonly = false

[MultieraReferenceInputTask]
readonly = false

[MultieraUsedInputTask]
readonly = false

[MultieraUnusedInputTask]

[MultieraStakeCredentialTask]

[MultieraAddressCredentialRelationTask]
readonly = false

[MultieraTxCredentialRelationTask]

[MultieraAssetMintTask]
readonly = false

[MultieraCip25EntryTask]

[MultieraAddressDelegationTask]

[MultieraAssetUtxos]

[MultiEraProjectedNftTask]
address = "703ec99926211daafe291951b778d4da7736a8b0da2aeb92305b511a72" # preprod address

0 comments on commit bbfec47

Please sign in to comment.