The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"name": "NFT Mint Tracker",
"nodes": [
{
"parameters": {
"chains": [
"0x1"
],
"contractAddresses": "0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D",
"monitorType": "contractLogs",
"abi": "[]",
"topic0": "0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef",
"options": {
"verifySignature": true,
"onlyConfirmed": true
}
},
"id": "trigger-1",
"name": "Moralis Streams Trigger",
"type": "n8n-nodes-evmstream.moralisStreamsTrigger",
"typeVersion": 1,
"position": [
250,
300
],
"credentials": {
"moralisStreamsApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"conditions": {
"options": {
"caseSensitive": false
},
"conditions": [
{
"id": "mint-check",
"leftValue": "={{ $json.data.topic1 }}",
"rightValue": "0x0000000000000000000000000000000000000000000000000000000000000000",
"operator": {
"type": "string",
"operation": "equals"
}
}
]
}
},
"id": "if-1",
"name": "Is Mint?",
"type": "n8n-nodes-base.if",
"typeVersion": 2,
"position": [
500,
300
]
},
{
"parameters": {
"assignments": {
"assignments": [
{
"id": "event",
"name": "event",
"value": "NFT Mint Detected",
"type": "string"
},
{
"id": "contract",
"name": "contract",
"value": "={{ $json.data.address }}",
"type": "string"
},
{
"id": "to",
"name": "mintedTo",
"value": "={{ $json.data.topic2 }}",
"type": "string"
},
{
"id": "blockNumber",
"name": "blockNumber",
"value": "={{ $json.block.number }}",
"type": "string"
}
]
}
},
"id": "set-1",
"name": "Format Mint Event",
"type": "n8n-nodes-base.set",
"typeVersion": 3.4,
"position": [
750,
250
]
}
],
"connections": {
"Moralis Streams Trigger": {
"main": [
[
{
"node": "Is Mint?",
"type": "main",
"index": 0
}
]
]
},
"Is Mint?": {
"main": [
[
{
"node": "Format Mint Event",
"type": "main",
"index": 0
}
]
]
}
},
"settings": {
"executionOrder": "v1"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
moralisStreamsApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
NFT Mint Tracker. Uses n8n-nodes-evmstream. Event-driven trigger; 3 nodes.
Source: https://github.com/pvdyck/n8n-nodes-evmstream/blob/61e921a5e233dabf26f25d3c0feb89493bc99b68/examples/moralis-nft-mint-tracker.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Multi-Chain Event Router. Uses n8n-nodes-evmstream. Event-driven trigger; 7 nodes.
ERC-20 Transfer Monitor. Uses n8n-nodes-evmstream. Event-driven trigger; 2 nodes.
Protect Pdf With The Password Using Convertapi. Uses manualTrigger, readWriteFile, stickyNote, httpRequest. Event-driven trigger; 7 nodes.
Kb Tool Confluence Knowledge Base. Uses executeWorkflowTrigger, httpRequest, stickyNote. Event-driven trigger; 7 nodes.
N8N Español - Ejemplos. Uses manualTrigger, executeCommand. Event-driven trigger; 7 nodes.