Skip to content

Commit e0d7a96

Browse files
committed
.
1 parent 2e0650a commit e0d7a96

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

TEMPLATE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ Description of what the QuickAlert does
66
### Blockchain & Network
77
All Blockchains and networks supporting this expression
88

9-
### Expression
9+
### Expression Values
1010
- `0x` Explanation of an address or topic if defined
1111

12+
### Expression
1213
```
1314
Expression goes here
1415
```

examples/any-nft-is-minted.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ Get a QuickAlert anytime a new ERC721 or ERC1155 NFT is minted.
66
### Blockchain & Network
77
All Blockchains and networks
88

9-
### Expression
9+
### Expression Values
1010
- `0x0000000000000000000000000000000000000000000000000000000000000000` is the mint address
1111
- `0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef` TBD
1212
- `0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62` TBD
1313
- `0x4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb` TBD
1414

15+
### Expression
1516
```
1617
((tx_logs_topic0 == '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef' && tx_logs_topic1 == '0x0000000000000000000000000000000000000000000000000000000000000000' && tx_logs_topic3_int > 0)||(tx_logs_topic0 == '0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62' && tx_logs_topic2 == '0x0000000000000000000000000000000000000000000000000000000000000000')||(tx_logs_topic0 == '0x4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb' && tx_logs_topic2 == '0x0000000000000000000000000000000000000000000000000000000000000000'))
1718
```

examples/blur-whale-claims.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ Get a QuickAlert anytime a $BLUR airdrop is claimed and reaches a specific thres
66
### Blockchain & Network
77
All Blockchains and networks
88

9-
### Expression
9+
### Expression Values
1010
- `0x5283d291dbcf85356a21ba090e6db59121208b44` $BLUR ERC20 contract
1111
- `0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef` TBD
1212
- `0xF2d15C0A89428C9251d71A0E29b39FF1e86bce25` TBD
1313
- `50000` is the minimum amount of tokens claimed in order to fire the alert. This is value is adjustable.
1414

15+
### Expression
1516
```
1617
(tx_logs_address == '0x5283d291dbcf85356a21ba090e6db59121208b44') && (tx_logs_topic0 == '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef') && (tx_logs_topic1 == '0xF2d15C0A89428C9251d71A0E29b39FF1e86bce25') && (tx_logs_data_int > 50000)
1718
```

0 commit comments

Comments
 (0)