huginn_callisto_network_agent 0.1.83 → 0.1.84

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ed5f76f3114c8521b24a4cb7261420b6bb6bba9f2c24d6355eb2285968af44b
4
- data.tar.gz: e458bc227bb0fe55f0ca99c4ff5110fffd689fc50bd58b6c85937eddb8c4ac29
3
+ metadata.gz: 6347392197009dec8851be8b8aa60bec647ba0b3139411f2a70eb43ab90468d9
4
+ data.tar.gz: a0d9fa5cc02c1ff40af63ccb7a6fc80708d5d865f966915d258648588d9a4002
5
5
  SHA512:
6
- metadata.gz: fa68db11f70f7776d15b4f4b79b0561cdba4f797749b6e20ba1b42351552e4e2988820d0421fe3df88cddd622a9c18f2f385095950061875bb78952a02aab432
7
- data.tar.gz: 0d69632d689c76f2ffca506ea8eae98c2612a318db39b1d97c61cf7b9566c8a361e465820554f1315ec5c546a0ecef31ab8b3de719eb9e052b4bb17f3513f38a
6
+ metadata.gz: 38c76efc882a2b939ea0e7518d6fbee1c6b83f37a438be2adafe1af00e974f9f17298f3cc6f19e8783465ddad0c436bd62ddbcfab73608189f1f6dbd1b5f35e2
7
+ data.tar.gz: cecb584921dcc14bdd3b4ebb996d1abcace256c5644d6f2606bc4edf3e0af35db9a969c191df902d7e34767c646d5098b460410a42ebc83fd94a018050ab9e29
@@ -454,29 +454,33 @@ module Agents
454
454
  dead_address = '0x000000000000000000000000000000000000dead'
455
455
  internal = true
456
456
  tx_list = []
457
- burnt_ether = 0
457
+ burnt_clo = 0
458
+ burnt_type2 = 0
459
+ burnt_dead = 0
458
460
  (interpolated['first_block']..interpolated['last_block']).each do |i|
459
461
  transactions = get_data(i.to_i,internal)
460
- gas_used = transactions['result']['gasUsed'].to_i(16)
461
462
  transactions['result']['transactions'].each do |tx|
462
463
  if !tx.empty?
463
464
  tx_list << tx
464
465
  if tx['type'] == "0x2"
465
- gas_price = tx['gasPrice'].to_i(16)
466
- fees = gas_price * gas_used.to_f / 10**18
466
+ gas_fee = transactions['result']['baseFeePerGas'].to_i(16)
467
+ fees = ( transactions['result']['gasUsed'].to_i(16) * gas_fee.to_f ) / (10 ** 18)
468
+ log gas_fee
469
+ log fees
467
470
  else
468
471
  fees = 0
469
472
  end
470
473
  if tx['to'] == dead_address
471
- burnt = tx['value'].to_i(16) / 10**18
474
+ burnt = tx['value'].to_i(16).to_f / 10**18
472
475
  else
473
476
  burnt = 0
474
477
  end
475
478
  end
476
- burnt_ether += fees
477
- burnt_ether += burnt
479
+ burnt_type2 += fees
480
+ burnt_dead += burnt
478
481
  end
479
482
  end
483
+ burnt_clo = ( burnt_type2 / tx_list.count ) + burnt_dead
480
484
  top_tx = most_common_from(tx_list)
481
485
  top_count = tx_list.count { |hash| hash['from'] == top_tx }
482
486
  miners_count = tx_list.select { |hash| all_miners.include?(hash['from']) }
@@ -490,7 +494,7 @@ module Agents
490
494
  active = tx_list.map { |p| p['from'] }.uniq.count
491
495
  # log "top_count : #{top_count}"
492
496
  # log "total : #{tx_list.count}"
493
- create_event :payload => { 'total_tx' => "#{tx_list.count}", 'total_active' => "#{active}", 'burnt_clo' => "#{burnt_ether}", 'top_wallet': {'address' => "#{top_tx}", 'percentage' => "#{percentage(top_count.to_i,tx_list.count.to_i)}"}, 'shitty': {'address': 'shitty', 'shitty_percentage' => "#{percentage(shitty_count.count,tx_list.count.to_i)}"}, 'miners': {'address': "miners", 'percentage' => "#{percentage(miners_count.count,tx_list.count.to_i)}"}, 'callosha': {'address': callosha_address, 'percentage' => "#{percentage(callosha_count.count,tx_list.count.to_i)}"}, 'twobears': {'address': twobears_address, 'percentage' => "#{percentage(twobears_count.count,tx_list.count.to_i)}"}, 'vipwarz': {'address': vipwarz_address, 'percentage' => "#{percentage(vipwarz_count.count,tx_list.count.to_i)}"}, 'slotmachine': {'address': slotmachine_address, 'percentage' => "#{percentage(slotmachine_count.count,tx_list.count.to_i)}"}}
497
+ create_event :payload => { 'total_tx' => "#{tx_list.count}", 'total_active' => "#{active}", 'burnt_clo' => "#{burnt_clo}", 'top_wallet': {'address' => "#{top_tx}", 'percentage' => "#{percentage(top_count.to_i,tx_list.count.to_i)}"}, 'shitty': {'address': 'shitty', 'shitty_percentage' => "#{percentage(shitty_count.count,tx_list.count.to_i)}"}, 'miners': {'address': "miners", 'percentage' => "#{percentage(miners_count.count,tx_list.count.to_i)}"}, 'callosha': {'address': callosha_address, 'percentage' => "#{percentage(callosha_count.count,tx_list.count.to_i)}"}, 'twobears': {'address': twobears_address, 'percentage' => "#{percentage(twobears_count.count,tx_list.count.to_i)}"}, 'vipwarz': {'address': vipwarz_address, 'percentage' => "#{percentage(vipwarz_count.count,tx_list.count.to_i)}"}, 'slotmachine': {'address': slotmachine_address, 'percentage' => "#{percentage(slotmachine_count.count,tx_list.count.to_i)}"}}
494
498
 
495
499
  end
496
500
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: huginn_callisto_network_agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.83
4
+ version: 0.1.84
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas Germain
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-03-10 00:00:00.000000000 Z
11
+ date: 2024-03-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler