huginn_callisto_network_agent 0.1.82 → 0.1.83

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e54c7e79bf9a6e80602514a29a0e229c26d7738a3b6283692032384e514db602
4
- data.tar.gz: 771ddcf73e1c48ef07bfd06d6a980f781aadb6cfa3f4795f4016cdcdfaf8684a
3
+ metadata.gz: 5ed5f76f3114c8521b24a4cb7261420b6bb6bba9f2c24d6355eb2285968af44b
4
+ data.tar.gz: e458bc227bb0fe55f0ca99c4ff5110fffd689fc50bd58b6c85937eddb8c4ac29
5
5
  SHA512:
6
- metadata.gz: a1834915b6048d07b11bee7feb6152a87dcebbf51ef7efa63e26681cb928c1f1fa3e740825a72c40444cb4fb2e7dfb52cd77351057c1d6fe0db98b00ed87263d
7
- data.tar.gz: fcd37ff91e213cf5e2461fe12ff549998f2aba3d9dcad626ccabd9634a0b8036a358d7da3a2307eed1ae54ffff1cccbf2452fdee9d94f2358b43c62497b6709a
6
+ metadata.gz: fa68db11f70f7776d15b4f4b79b0561cdba4f797749b6e20ba1b42351552e4e2988820d0421fe3df88cddd622a9c18f2f385095950061875bb78952a02aab432
7
+ data.tar.gz: 0d69632d689c76f2ffca506ea8eae98c2612a318db39b1d97c61cf7b9566c8a361e465820554f1315ec5c546a0ecef31ab8b3de719eb9e052b4bb17f3513f38a
@@ -451,6 +451,7 @@ module Agents
451
451
  slotmachine_address = '0x7777265dc7fd2a15a7f2e8d8ad87b3daec677777'
452
452
  twobears_address = '0x78afc46df1d3eb5cff7044d288a453fe43e17310'
453
453
  vipwarz_address = '0x2f48b8887d2d5d5b718c9f6516b44ba1c1bb8db1'
454
+ dead_address = '0x000000000000000000000000000000000000dead'
454
455
  internal = true
455
456
  tx_list = []
456
457
  burnt_ether = 0
@@ -459,11 +460,21 @@ module Agents
459
460
  gas_used = transactions['result']['gasUsed'].to_i(16)
460
461
  transactions['result']['transactions'].each do |tx|
461
462
  if !tx.empty?
462
- gas_price = tx['gasPrice'].to_i(16)
463
- fees = gas_price * gas_used.to_f / 10**18
464
463
  tx_list << tx
464
+ if tx['type'] == "0x2"
465
+ gas_price = tx['gasPrice'].to_i(16)
466
+ fees = gas_price * gas_used.to_f / 10**18
467
+ else
468
+ fees = 0
469
+ end
470
+ if tx['to'] == dead_address
471
+ burnt = tx['value'].to_i(16) / 10**18
472
+ else
473
+ burnt = 0
474
+ end
465
475
  end
466
476
  burnt_ether += fees
477
+ burnt_ether += burnt
467
478
  end
468
479
  end
469
480
  top_tx = most_common_from(tx_list)
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.82
4
+ version: 0.1.83
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-03 00:00:00.000000000 Z
11
+ date: 2024-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler