erc20 0.0.20 → 0.1.0

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.
@@ -1,24 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2025 Yegor Bugayenko
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the 'Software'), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in all
13
- # copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- # SOFTWARE.
3
+ # SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
4
+ # SPDX-License-Identifier: MIT
22
5
 
23
6
  require_relative 'erc20'
24
7
  require_relative 'wallet'
@@ -29,6 +12,9 @@ require_relative 'wallet'
29
12
  # Copyright:: Copyright (c) 2025 Yegor Bugayenko
30
13
  # License:: MIT
31
14
  class ERC20::FakeWallet
15
+ # Transaction hash always returned:
16
+ TXN_HASH = '0x172de9cda30537eae68ab4a96163ebbb8f8a85293b8737dd2e5deb4714b14623'
17
+
32
18
  # Fakes:
33
19
  attr_reader :host, :port, :ssl, :chain, :contract, :ws_path, :http_path
34
20
 
@@ -45,6 +31,22 @@ class ERC20::FakeWallet
45
31
  @ws_path = '/'
46
32
  @http_path = '/'
47
33
  @history = []
34
+ @balances = {}
35
+ @eth_balances = {}
36
+ end
37
+
38
+ # Set balance, to be returned by the +balance()+.
39
+ # @param [String] address Public key, in hex, starting from '0x'
40
+ # @param [Integer] tokens How many tokens to put there
41
+ def set_balance(address, tokens)
42
+ @balances[address] = tokens
43
+ end
44
+
45
+ # Set balance, to be returned by the +balance()+.
46
+ # @param [String] address Public key, in hex, starting from '0x'
47
+ # @param [Integer] wei How many wei to put there
48
+ def set_eth_balance(address, wei)
49
+ @eth_balances[address] = wei
48
50
  end
49
51
 
50
52
  # Get ERC20 balance of a public address.
@@ -52,7 +54,7 @@ class ERC20::FakeWallet
52
54
  # @param [String] address Public key, in hex, starting from '0x'
53
55
  # @return [Integer] Balance, in tokens
54
56
  def balance(address)
55
- b = 42_000_000
57
+ b = @balances[address] || 42_000_000
56
58
  @history << { method: :balance, address:, result: b }
57
59
  b
58
60
  end
@@ -62,7 +64,7 @@ class ERC20::FakeWallet
62
64
  # @param [String] address Public key, in hex, starting from '0x'
63
65
  # @return [Integer] Balance, in tokens
64
66
  def eth_balance(address)
65
- b = 77_000_000_000_000_000
67
+ b = @eth_balances[address] || 77_000_000_000_000_000
66
68
  @history << { method: :eth_balance, address:, result: b }
67
69
  b
68
70
  end
@@ -94,7 +96,7 @@ class ERC20::FakeWallet
94
96
  # @param [Integer] _amount The amount of ERC20 tokens to send
95
97
  # @return [String] Transaction hash
96
98
  def pay(priv, address, amount, gas_limit: nil, gas_price: nil)
97
- hex = '0x172de9cda30537eae68ab4a96163ebbb8f8a85293b8737dd2e5deb4714b14623'
99
+ hex = TXN_HASH
98
100
  @history << { method: :pay, priv:, address:, amount:, gas_limit:, gas_price:, result: hex }
99
101
  hex
100
102
  end
@@ -106,7 +108,7 @@ class ERC20::FakeWallet
106
108
  # @param [Integer] amount The amount of ETHs to send
107
109
  # @return [String] Transaction hash
108
110
  def eth_pay(priv, address, amount, gas_price: nil)
109
- hex = '0x172de9cda30537eae68ab4a96163ebbb8f8a85293b8737dd2e5deb4714b14623'
111
+ hex = TXN_HASH
110
112
  @history << { method: :eth_pay, priv:, address:, amount:, gas_price:, result: hex }
111
113
  hex
112
114
  end
@@ -132,7 +134,7 @@ class ERC20::FakeWallet
132
134
  amount: 424_242,
133
135
  from: '0xd5ff1bfcde7a03da61ad229d962c74f1ea2f16a5',
134
136
  to: a,
135
- txn: '0x172de9cda30537eae68ab4a96163ebbb8f8a85293b8737dd2e5deb4714b14623'
137
+ txn: TXN_HASH
136
138
  }
137
139
  end
138
140
  yield event
data/lib/erc20/wallet.rb CHANGED
@@ -1,24 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2025 Yegor Bugayenko
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the 'Software'), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in all
13
- # copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- # SOFTWARE.
3
+ # SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
4
+ # SPDX-License-Identifier: MIT
22
5
 
23
6
  require 'eth'
24
7
  require 'eventmachine'
data/lib/erc20.rb CHANGED
@@ -1,24 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2025 Yegor Bugayenko
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the 'Software'), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in all
13
- # copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- # SOFTWARE.
3
+ # SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
4
+ # SPDX-License-Identifier: MIT
22
5
 
23
6
  require_relative 'erc20/erc20'
24
7
  require_relative 'erc20/wallet'
@@ -1,24 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2025 Yegor Bugayenko
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the 'Software'), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in all
13
- # copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- # SOFTWARE.
3
+ # SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
4
+ # SPDX-License-Identifier: MIT
22
5
 
23
6
  require 'backtrace'
24
7
  require 'donce'
@@ -57,17 +40,35 @@ class TestFakeWallet < Minitest::Test
57
40
  a = '0xEB2fE8872A6f1eDb70a2632Effffffffffffffff'
58
41
  b = w.balance(a)
59
42
  refute_nil(b)
43
+ assert_equal(42_000_000, b)
60
44
  assert_includes(w.history, { method: :balance, result: b, address: a })
61
45
  end
62
46
 
47
+ def test_checks_preset_fake_balance
48
+ w = ERC20::FakeWallet.new
49
+ a = '0xEB2fE8872A6f1eDb70a2632Effffffffeefbbfaa'
50
+ b = 55_555
51
+ w.set_balance(a, b)
52
+ assert_equal(b, w.balance(a))
53
+ end
54
+
63
55
  def test_checks_fake_eth_balance
64
- a = '0xEB2fE8872A6f1eDb70a2632Effffffffffffffff'
56
+ a = '0xEB2fE8872A6f1eDb70a2632Ebbffffff66fff77f'
65
57
  w = ERC20::FakeWallet.new
66
58
  b = w.eth_balance(a)
67
59
  refute_nil(b)
60
+ assert_equal(77_000_000_000_000_000, b)
68
61
  assert_includes(w.history, { method: :eth_balance, result: b, address: a })
69
62
  end
70
63
 
64
+ def test_checks_preset_fake_eth_balance
65
+ a = '0xEB2fE8872A6f1eDb70a2632Eff88fff99fff33ff'
66
+ w = ERC20::FakeWallet.new
67
+ b = 33_333
68
+ w.set_eth_balance(a, b)
69
+ assert_equal(b, w.eth_balance(a))
70
+ end
71
+
71
72
  def test_returns_host
72
73
  assert_equal('example.com', ERC20::FakeWallet.new.host)
73
74
  end
@@ -80,6 +81,7 @@ class TestFakeWallet < Minitest::Test
80
81
  txn = w.pay(priv, address, amount)
81
82
  assert_equal(66, txn.length)
82
83
  assert_match(/^0x[a-f0-9]{64}$/, txn)
84
+ assert_equal(ERC20::FakeWallet::TXN_HASH, txn)
83
85
  assert_includes(w.history, { method: :pay, result: txn, priv:, address:, amount:, gas_limit: nil, gas_price: nil })
84
86
  end
85
87
 
@@ -1,24 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2025 Yegor Bugayenko
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the 'Software'), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in all
13
- # copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- # SOFTWARE.
3
+ # SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
4
+ # SPDX-License-Identifier: MIT
22
5
 
23
6
  require 'backtrace'
24
7
  require 'donce'
data/test/test__helper.rb CHANGED
@@ -1,24 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright (c) 2025 Yegor Bugayenko
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the 'Software'), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in all
13
- # copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- # SOFTWARE.
3
+ # SPDX-FileCopyrightText: Copyright (c) 2025 Yegor Bugayenko
4
+ # SPDX-License-Identifier: MIT
22
5
 
23
6
  $stdout.sync = true
24
7
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: erc20
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.20
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yegor Bugayenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-17 00:00:00.000000000 Z
11
+ date: 2025-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eth
@@ -80,12 +80,27 @@ dependencies:
80
80
  - - ">"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: slop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">"
88
+ - !ruby/object:Gem::Version
89
+ version: '4'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">"
95
+ - !ruby/object:Gem::Version
96
+ version: '4'
83
97
  description: 'A simple library for making ERC20 manipulations as easy as they can
84
98
  be for cryptocurrency newbies: checking balance, sending payments, and monitoring
85
99
  addresses for incoming payments. The library expects Etherium node to provide JSON
86
100
  RPC and Websockets API.'
87
101
  email: yegor256@gmail.com
88
- executables: []
102
+ executables:
103
+ - erc20
89
104
  extensions: []
90
105
  extra_rdoc_files:
91
106
  - README.md
@@ -99,6 +114,7 @@ files:
99
114
  - ".github/workflows/markdown-lint.yml"
100
115
  - ".github/workflows/pdd.yml"
101
116
  - ".github/workflows/rake.yml"
117
+ - ".github/workflows/reuse.yml"
102
118
  - ".github/workflows/shellcheck.yml"
103
119
  - ".github/workflows/xcop.yml"
104
120
  - ".github/workflows/yamllint.yml"
@@ -112,9 +128,16 @@ files:
112
128
  - Gemfile
113
129
  - Gemfile.lock
114
130
  - LICENSE.txt
131
+ - LICENSES/MIT.txt
115
132
  - README.md
133
+ - REUSE.toml
116
134
  - Rakefile
135
+ - bin/erc20
117
136
  - erc20.gemspec
137
+ - features/cli.feature
138
+ - features/gem_package.feature
139
+ - features/step_definitions/steps.rb
140
+ - features/support/env.rb
118
141
  - hardhat/.gitignore
119
142
  - hardhat/Dockerfile
120
143
  - hardhat/contracts/Foo.sol