No items found.

December 6, 2017

Ethereum in real-time: Dagger — Simple engine to get Ethereum transactions, receipts and events in real-time

No items found.

Somedays ago, someone sent random transaction to Parity Wallet and accidentally locked funds. No one knew about it until that person informed the team on Github. Currently there is no way to receive transaction (filtered) events from Ethereum and process them.

Etherscan sends you an email whenever anyone deposits to your accounts. But we need more ways to get informed whenever something happens on contracts. Simple example: getting a slack message or mobile notification when someone withdraws more than 10ETH or 1000 Tokens from your Multi-sig wallet?

To make that possible, we have created Dagger. We at Matic Network aim to make current decentralized eco-system more usable and easy for users and we believe Dagger helps developers to achieve that.

Dagger

Dagger is a simple development tool to get blocks, transactions or events triggered by Ethereum blockchain.

It uses pub/sub mechanism (MQTT protocol). Once you subscribe particular topic, you will start receiving messages that matches subscribed topic.

You can subscribe as many as topics you want.

We have already created javascript library which you use on Node and browser as well. You can use one of any available MQTT libraries to interact with Dagger.

var Dagger = require('eth-dagger'); // connect to Dagger ETH main network (network id: 1) over web socket var dagger = new Dagger('ws://mainnet.dagger.matic.network:1884'); // dagger server // Use mqtt protocol for node (socket) // var dagger = new Dagger('mqtt://mainnet.dagger.matic.network:1883'); // dagger server // get new block as soon as it gets created dagger.on('latest:block', function(result) { console.log("New block created: ", result.data); }); // get only block number (as it gets created) dagger.on('latest:block.number', function(result) { console.log("Current block number: ", result.data); });Get latest Ethereum block using Dagger ?

Use cases

Here are some use-cases (not limited)

  • Send emails to your DApp users when their contracts get created and they are ready to use
  • Watch ERC20 token transfer from particular address

// web3 contract var web3Contract = new web3.eth.Contract(abi, address); // dagger contract var contract = dagger.contract(web3Contract); var filter = contract.events.Transfer({filter: {from: ‘0x123456...’}, room: ‘latest’}); // watch filter.watch(function(data, removed){ // data.returnValues.to : address to which it has been transferred to // data.returnValues.value : value which has been transferred }); // watch only once filter.watchOnce(function(data, removed){ // data.returnValues.to : address to which it has been transferred to // data.returnValues.value : value which has been transferred }); // stop watching filter.stopWatching();Watch ERC20 token transfer from mentioned address ?

  • Receive slack messages when someone withdraws 1000 tokens
  • Automatically send broadcast new transaction when future block ‘X’ gets created
  • … and many more …

You can connect Dagger with any third party services using IFTTT or Zapier.

Here is an example to store every outgoing Aragon Multisig Wallet transaction into Airtable.

Here are useful links:

Dagger: https://matic.network/dagger
Dagger examples: https://github.com/jdkanani/eth-dagger-examples
Javascript library: https://github.com/maticnetwork/eth-dagger.js

Let us know how we can make Dagger better for developers to help them make better DApps.

Stay in touch with us by following us on Twitter.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

April 2, 2026

Polygon Chain

Polygon Launches Private Mempool: MEV Protection Is Now a One-Line Integration

April 2, 2026

Polygon Chain

SurfLiquid Is Building AI-Powered Stablecoin Savings on Polygon

March 30, 2026

Institutional
Open Money Stack
Payments

What to Ask Before You Trust a Payment Network With Your Money

March 26, 2026

Institutional
Open Money Stack

Revolut Crosses $1.2B in Onchain Transactions on Polygon as Europe's Most Valuable Fintech Deepens Blockchain Bet

March 25, 2026

Polygon CDK
Institutional

Your Enterprise Chain Needs Privacy as a Spectrum

March 25, 2026

Case Studies
Payments
Open Money Stack
Wallets

Honda Autobol and Takenos Bring Polygon-Powered Payments to Car Maintenance in Bolivia

March 25, 2026

Open Money Stack
Payments

Vertical, Integrated, Open: Why Polygon Is Building the Open Money Stack

March 19, 2026

Polygon CDK
DeFi
Institutional
Case Studies

How Katana Network Launched a DeFi Chain from Scratch with Polygon CDK

March 18, 2026

Polygon CDK
Institutional

Apex Group Commits $100B in Tokenized Assets to T-REX Ledger, New RWA Compliance Chain Built with Polygon CDK

March 17, 2026

Institutional
Payments

Stablecoin Payments for Enterprise: A Practical Guide

Next
PREV
More Blogs