mirror of
https://github.com/status-im/op-geth.git
synced 2025-01-31 00:44:53 +00:00
17 lines
346 B
JavaScript
17 lines
346 B
JavaScript
|
|
||
|
var abi = require('./abi');
|
||
|
|
||
|
var implementationOfEvent = function (event, address, signature) {
|
||
|
|
||
|
return function (options) {
|
||
|
var o = options || {};
|
||
|
o.address = o.address || address;
|
||
|
o.topics = o.topics || [];
|
||
|
o.topics.push(signature);
|
||
|
return o;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
module.exports = implementationOfEvent;
|
||
|
|