Skip to content
This repository was archived by the owner on Aug 12, 2023. It is now read-only.

Commit 7335ef3

Browse files
committed
Add relayerId to trader_fills index
1 parent 7058a6c commit 7335ef3

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

src/consumers/index-fill-traders/index.js

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const indexFillTraders = async (job, { logger }) => {
1818
fillId,
1919
fillValue,
2020
maker,
21+
relayerId,
2122
taker,
2223
tradeCount,
2324
transactionHash,
@@ -58,6 +59,7 @@ const indexFillTraders = async (job, { logger }) => {
5859
address: maker,
5960
fillId,
6061
date: fillDate,
62+
relayerId,
6163
makerFillCount: 1,
6264
makerFillValue: fillValue,
6365
makerTradeCount: tradeCount,
@@ -77,6 +79,7 @@ const indexFillTraders = async (job, { logger }) => {
7779
address: takerMetadata.isContract ? transaction.from : taker,
7880
fillId,
7981
date: fillDate,
82+
relayerId,
8083
takerFillCount: 1,
8184
takerFillValue: fillValue,
8285
takerTradeCount: tradeCount,

src/consumers/index-fill-traders/index.test.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ describe('consumers/index-fill-traders', () => {
128128
fillId: '5f267c7b545e125452c56e14',
129129
fillValue: 500,
130130
maker: '0x903153f55770b7668a497180f7fa93471545ffe2',
131+
relayerId: 28,
131132
taker: '0xd0f8715fda0c1b564c2087315fb55804eaf1fae9',
132133
tradeCount: 1,
133134
transactionHash:
@@ -167,6 +168,7 @@ describe('consumers/index-fill-traders', () => {
167168
address: '0x903153f55770b7668a497180f7fa93471545ffe2',
168169
fillId: '5f267c7b545e125452c56e14',
169170
date: '2020-08-02T07:47:28.000Z',
171+
relayerId: 28,
170172
makerFillCount: 1,
171173
makerFillValue: 500,
172174
makerTradeCount: 1,
@@ -186,6 +188,7 @@ describe('consumers/index-fill-traders', () => {
186188
address: '0xd0f8715fda0c1b564c2087315fb55804eaf1fae9',
187189
fillId: '5f267c7b545e125452c56e14',
188190
date: '2020-08-02T07:47:28.000Z',
191+
relayerId: 28,
189192
takerFillCount: 1,
190193
takerFillValue: 500,
191194
takerTradeCount: 1,
@@ -298,7 +301,7 @@ describe('consumers/index-fill-traders', () => {
298301
]);
299302
});
300303

301-
it('should index without value if not available', async () => {
304+
it('should index without value and relayerId if not available', async () => {
302305
const job = {
303306
data: {
304307
fillDate: new Date('2020-08-02T07:47:28Z'),

src/index/index-fill-traders.js

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ const indexFillTraders = async fill => {
2929
fillId,
3030
fillValue: value,
3131
maker: fill.maker,
32+
relayerId: fill.relayerId,
3233
taker: fill.taker,
3334
tradeCount,
3435
transactionHash: fill.transactionHash,

src/jobs/measure-fills/measure-fill.test.js

+1
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ describe('jobs/measure-fills/measure-fill', () => {
7070
fillDate: new Date('2020-02-08T11:21:14.000Z'),
7171
fillValue: 1674.924411,
7272
maker: '0x533344cfdf2a3e911e2cf4c6f5ed08e791f5355f',
73+
relayerId: 31,
7374
taker: '0x4ef40d1bf0983899892946830abf99eca2dbc5ce',
7475
tradeCount: 1,
7576
transactionHash:

0 commit comments

Comments
 (0)