huginn_callisto_network_agent 0.1.70 → 0.1.71

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: 78a4f98394887c498ce4c5de2c219cc780ff2facb5db8251f87d5e262f709cb9
4
- data.tar.gz: 0f63cfe15a891c8f56c032b8b5d418236fc2aaec9652caf8b6515e26862d8ab6
3
+ metadata.gz: 6e354ce319d63f636fd542b98a0c56c8fccde7da51588a89015e8d3e3e689dd3
4
+ data.tar.gz: 3c55a835314f2e8af320d363f76c1b1f1bf08fbfab93fdc490aca0f7af81f9d0
5
5
  SHA512:
6
- metadata.gz: 78cc796e72dd596ec78d9241de4d3e8c4412011f87e105afcf2383791b8fabb1622139ec6dff0e280371c5c2b0ec0d78631116831f5ff2a2d7c92bdd3cfb23e3
7
- data.tar.gz: b786e7457c5a7ef5dacd7ea277f8263a1d7145d33ed7963c5b369e01af65a1d696062799435a547bdcb5f7404d9161924998e5e8dcbdc3ea03de7c2e03e70b34
6
+ metadata.gz: 29b367ca0a5601f56ef3a3b10d73f689f137dbb66fce53f306cb0390d36edbfd81b37ebb25e68e37fd501f5dcd0a4f4b330605b0363f9e73866e8e859378eb73
7
+ data.tar.gz: fed1126808a2cbdcacba8bc5a3fbc5581ff86bf2d166f8fd7b214795cb85b9cd645ecda9e7de57d846dd0e99f075b3e1fd0e4468b77d0932915af1f04d79c79f
@@ -524,9 +524,24 @@ module Agents
524
524
  transaction['call_type'] = 'sellToken'
525
525
  when "0xa0169f0d"
526
526
  transaction['call_type'] = 'createDumperShield'
527
+ when "0x335a9406"
528
+ transaction['call_type'] = 'transfer'
527
529
  else
528
530
  transaction['call_type'] = 'unknown'
529
531
  end
532
+ if transaction['input'] != '0x'
533
+ hex_string = transaction['input'].dup
534
+ hex_string.slice!(0, 2)
535
+ # Convert hexadecimal string to bytes
536
+ bytes_string = [hex_string].pack("H*")
537
+ # Try to convert bytes to UTF-8 and check if it's readable
538
+ decoded_string = bytes_string.force_encoding("utf-8")
539
+ # Check if the conversion is successful without loss of information
540
+ if decoded_string.valid_encoding? && decoded_string.encode("utf-8", invalid: :replace, undef: :replace) == decoded_string
541
+ puts "The string is readable by a human: #{decoded_string}"
542
+ transaction['input_utf8'] = decoded_string
543
+ end
544
+ end
530
545
  create_event payload: transaction
531
546
  end
532
547
  end
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.70
4
+ version: 0.1.71
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-01-12 00:00:00.000000000 Z
11
+ date: 2024-01-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler