transferFrom
:Transfer(msg.sender, _to, _value)
;
we can therefore create an Event Trigger
that looks for events emitted and sends us an email every time a smart contract transfers any amount of tokens from our account:Transfer
from
If you want to track the token you receive, insert your address in to
. You can also specify a range in the value
field, for example to filter transactions that move more than X coins.balanceOf
for returning the account balance of another account:Watch a Contract Trigger:
balanceOf
src [address]
, insert the address you want to track. returns
, enter the threshold value that you want the trigger to be fired if the balance drops below.Transfer
with a specific from field, which emits a Transfer event with the address set to 0x (see an example here). You can create a Trigger that fires every time tokens are mint this way:Transfer
From
field, insert 0x0000000000000000000000000000000000000000000000000000000000000000Approval
event is fired on any successful call to approve(address _spender, uint256 _value)
. We can create a Trigger that is fired every time some funds are withdrawn from your account:owner
field, insert your own addressspender
empty, or track a specific spendervalue
empty, or track any transfer that moves a particular amount of tokens.