Skip to content

Commit 91a6d65

Browse files
committed
#9: works
1 parent b3474dc commit 91a6d65

File tree

5 files changed

+29
-19
lines changed

5 files changed

+29
-19
lines changed

.gitleaksignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
hardhat/hardhat.config.js:generic-api-key:38
2+
hardhat/hardhat.config.js:generic-api-key:42

hardhat/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ artifacts/
22
cache/
33
node_modules/
44
ignition/deployments/
5-
package-lock.json
5+
package-lock.json

hardhat/hardhat.config.js

+13-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) 2025 Yegor Bugayenko
22
//
33
// Permission is hereby granted, free of charge, to any person obtaining a copy
4-
// of this software and associated documentation files (the 'Software'), to deal
4+
// of this software and associated documentation files (the "Software"), to deal
55
// in the Software without restriction, including without limitation the rights
66
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
77
// copies of the Software, and to permit persons to whom the Software is
@@ -10,7 +10,7 @@
1010
// The above copyright notice and this permission notice shall be included in all
1111
// copies or substantial portions of the Software.
1212
//
13-
// THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
13+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1414
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1515
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
1616
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
@@ -20,7 +20,7 @@
2020

2121
require("@nomicfoundation/hardhat-toolbox");
2222

23-
/** @type import('hardhat/config').HardhatUserConfig */
23+
/** @type import("hardhat/config").HardhatUserConfig */
2424

2525
module.exports = {
2626
solidity: "0.8.28",
@@ -33,9 +33,16 @@ module.exports = {
3333
maxFeePerGas: 100,
3434
maxPriorityFeePerGas: 100,
3535
initialBaseFeePerGas: 100,
36-
accounts: {
37-
count: 1
38-
}
36+
accounts: [
37+
{
38+
privateKey: "81a9b2114d53731ecc84b261ef6c0387dde34d5907fe7b441240cc21d61bf80a",
39+
balance: "55555555555555555555555"
40+
},
41+
{
42+
privateKey: "91f9111b1744d55361e632771a4e53839e9442a9fef45febc0a5c838c686a15b",
43+
balance: "66666666666666666666666"
44+
}
45+
]
3946
},
4047
foo: {
4148
chainId: 4242,

lib/erc20/wallet.rb

+7-6
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@ class ERC20::Wallet
3838
# Constructor.
3939
# @param [String] contract Hex of the contract in Etherium
4040
# @param [String] rpc The URL of Etherium JSON-RPC provider
41+
# @param [Integer] chain The ID of the chain (1 for mainnet)
4142
# @param [Object] log The destination for logs
42-
def initialize(contract: USDT, rpc: '', log: $stdout)
43+
def initialize(contract: USDT, rpc: '', chain: 1, log: $stdout)
4344
@contract = contract
4445
@rpc = rpc
4546
@log = log
47+
@chain = chain
4648
end
4749

4850
# Get balance of a public address.
@@ -73,16 +75,15 @@ def pay(priv, address, amount)
7375
key = Eth::Key.new(priv: priv)
7476
from = key.address
7577
nonce = client.eth_getTransactionCount(from, 'pending').to_i(16)
76-
gas = client.eth_estimateGas({ from:, to: @contract, data: data}, 'latest').to_i(16)
77-
@log.info("Gas: #{gas}")
78+
gas = client.eth_estimateGas({ from:, to: @contract, data: data }, 'latest').to_i(16)
7879
tx = Eth::Tx.new({
7980
nonce:,
80-
gas_price: 1000,
81-
gas_limit: gas * 100,
81+
gas_price: 99,
82+
gas_limit: gas,
8283
to: @contract,
8384
value: 0,
8485
data: data,
85-
chain_id: 4242
86+
chain_id: @chain
8687
})
8788
tx.sign(key)
8889
client.eth_sendRawTransaction("0x" + tx.hex)

test/erc20/test_wallet.rb

+6-6
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_checks_balance_on_testnet
7676
def test_checks_balance_on_hardhat
7777
on_hardhat do |wallet|
7878
b = wallet.balance(Eth::Key.new(priv: JEFF).address.to_s)
79-
assert_equal(123_000_000_000, b)
79+
assert_equal(123_000_100_000, b)
8080
end
8181
end
8282

@@ -88,7 +88,7 @@ def test_pays_on_hardhat
8888
from = Eth::Key.new(priv: JEFF).address.to_s
8989
assert(wallet.balance(from) > sum * 2)
9090
wallet.pay(JEFF, to, sum)
91-
assert_equal(before - sum, wallet.balance(to))
91+
assert_equal(before + sum, wallet.balance(to))
9292
end
9393
end
9494

@@ -159,7 +159,7 @@ def on_hardhat
159159
home: File.join(__dir__, '../../hardhat'),
160160
ports: { port => 8545 },
161161
command: 'npx hardhat node',
162-
log: Loog::VERBOSE
162+
log: Loog::NULL
163163
) do
164164
wait_for(port)
165165
cmd = [
@@ -172,13 +172,13 @@ def on_hardhat
172172
home: File.join(__dir__, '../../hardhat'),
173173
command: "/bin/bash -c #{Shellwords.escape(cmd)}",
174174
build_args: { 'HOST' => donce_host, 'PORT' => port },
175-
log: Loog::VERBOSE,
175+
log: Loog::NULL,
176176
root: true
177177
).split("\n").last
178178
wallet = ERC20::Wallet.new(
179-
contract:,
179+
contract:, chain: 4242,
180180
rpc: "http://localhost:#{port}",
181-
log: Loog::VERBOSE
181+
log: Loog::NULL
182182
)
183183
yield wallet
184184
end

0 commit comments

Comments
 (0)