TEST
feature located in the Smart Trigger code editor can help you understand if the ParsiQL code is right and will run without error.TEST
function will not send you any notifications or data through your Delivery Channels nor it will use your plan’s actions.TEST
you need to change the fields so the sample transaction would match with the conditions you wrote in your Smart Trigger code. For example, check the following BSC Smart Trigger code:"to"
address must be "0x0000000000000000000000000000000123456789"
"value"
must be more than or equal to 8000000000000000000
"token"
"symbol"
must be "TestToken"
TEST
then switch to CONSOLE
tab. It should automatically go to testing part of the console. If everything was correct, There you’ll see JSON string that your Smart Trigger produced, containing everything that you chose to emit.contractEventStream
event
(or function
),contract
transaction
block
topics
parsedData
data
AdminChanged
and saved this user stream as TEST. So automatically our Stream is called ETH_TEST_AdminChanged_Events
in code editor.contractEventStream
must have the same name as your User Defined StreamAdminChanged
, we need to fill this field as AdminChanged
contract
must have an address of a contract that you are monitoringAdminChanged
event has several components: previousAdmin
and newAdmin
which are address'eth'
type. If you need these components (i.e. you are emitting them in your code), you must add them in your transaction sample.