File tree 2 files changed +11
-11
lines changed
services/decoder/protocols/uniswap-v2
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -11,19 +11,19 @@ const configs: Configs = [
11
11
address : "0xb4e16d0168e52d35cacd2c6185b44281ec28c9dc" ,
12
12
is_factory : false ,
13
13
protocol_name : "uniswap-v2" ,
14
- network : "eth-mainnet" ,
14
+ chain_name : "eth-mainnet" ,
15
15
} ,
16
16
{
17
17
address : "0x0d4a11d5eeaac28ec3f61d100daf4d40471f1852" ,
18
18
is_factory : false ,
19
19
protocol_name : "uniswap-v2" ,
20
- network : "eth-mainnet" ,
20
+ chain_name : "eth-mainnet" ,
21
21
} ,
22
22
{
23
23
address : "0x5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f" ,
24
24
is_factory : true ,
25
25
protocol_name : "uniswap-v2" ,
26
- network : "eth-mainnet" ,
26
+ chain_name : "eth-mainnet" ,
27
27
} ,
28
28
] ;
29
29
Original file line number Diff line number Diff line change @@ -253,12 +253,12 @@ GoldRushDecoder.on(
253
253
} ,
254
254
details : [
255
255
{
256
- title : "Sender" ,
256
+ heading : "Sender" ,
257
257
value : decoded . sender ,
258
258
type : "address" ,
259
259
} ,
260
260
{
261
- title : "To" ,
261
+ heading : "To" ,
262
262
value : decoded . to ,
263
263
type : "address" ,
264
264
} ,
@@ -444,15 +444,15 @@ GoldRushDecoder.on(
444
444
} ,
445
445
details : [
446
446
{
447
- title : `${
447
+ heading : `${
448
448
data ?. items ?. [ 0 ] ?. token_0 ?. contract_name || ""
449
449
} Symbol`,
450
450
value :
451
451
data ?. items ?. [ 0 ] ?. token_0 ?. contract_ticker_symbol || "" ,
452
452
type : "text" ,
453
453
} ,
454
454
{
455
- title : `${
455
+ heading : `${
456
456
data ?. items ?. [ 0 ] ?. token_0 ?. contract_name || ""
457
457
} Decimals`,
458
458
value : (
@@ -461,22 +461,22 @@ GoldRushDecoder.on(
461
461
type : "text" ,
462
462
} ,
463
463
{
464
- title : `${
464
+ heading : `${
465
465
data ?. items ?. [ 0 ] ?. token_0 ?. contract_name || ""
466
466
} Address`,
467
467
value : data ?. items ?. [ 0 ] ?. token_0 ?. contract_address || "" ,
468
468
type : "address" ,
469
469
} ,
470
470
{
471
- title : `${
471
+ heading : `${
472
472
data ?. items ?. [ 0 ] ?. token_1 ?. contract_name || ""
473
473
} Symbol`,
474
474
value :
475
475
data ?. items ?. [ 0 ] ?. token_1 ?. contract_ticker_symbol || "" ,
476
476
type : "text" ,
477
477
} ,
478
478
{
479
- title : `${
479
+ heading : `${
480
480
data ?. items ?. [ 0 ] ?. token_1 ?. contract_name || ""
481
481
} Decimals`,
482
482
value : (
@@ -485,7 +485,7 @@ GoldRushDecoder.on(
485
485
type : "text" ,
486
486
} ,
487
487
{
488
- title : `${
488
+ heading : `${
489
489
data ?. items ?. [ 0 ] ?. token_1 ?. contract_name || ""
490
490
} Address`,
491
491
value : data ?. items ?. [ 0 ] ?. token_1 ?. contract_address || "" ,
You can’t perform that action at this time.
0 commit comments