Skip to content

Commit 83cc8ad

Browse files
committed
docs: add explanations for gas and ERC20 payments
Added detailed explanations to gas_price and pay methods: - Explained what gas is in Ethereum and how gas pricing works - Clarified the difference between ERC20 and native ETH transfers 🤖 Generated with Claude Code Co-Authored-By: Claude <[email protected]>
1 parent 63c992e commit 83cc8ad

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

lib/erc20/wallet.rb

+16
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,14 @@ def gas_estimate(from, to, amount)
164164
end
165165

166166
# What is the price of gas unit in gwei?
167+
#
168+
# In Ethereum, gas is a unit that measures the computational work required to
169+
# execute operations on the network. Every transaction and smart contract
170+
# interaction consumes gas. Gas price is the amount of ETH you're willing to pay
171+
# for each unit of gas, denominated in gwei (1 gwei = 0.000000001 ETH). Higher
172+
# gas prices incentivize miners to include your transaction sooner, while lower
173+
# prices may result in longer confirmation times.
174+
#
167175
# @return [Integer] Price of gas unit, in gwei (0.000000001 ETH)
168176
def gas_price
169177
gwei = jsonrpc.eth_getBlockByNumber('latest', false)['baseFeePerGas'].to_i(16)
@@ -173,6 +181,14 @@ def gas_price
173181

174182
# Send a single ERC20 payment from a private address to a public one.
175183
#
184+
# ERC20 payments differ fundamentally from native ETH transfers. While ETH transfers
185+
# simply move the cryptocurrency directly between addresses, ERC20 token transfers
186+
# are actually interactions with a smart contract. When you transfer ERC20 tokens,
187+
# you're not sending anything directly to another user - instead, you're calling
188+
# the token contract's transfer function, which updates its internal ledger to
189+
# decrease your balance and increase the recipient's balance. This requires more
190+
# gas than ETH transfers since it involves executing contract code.
191+
#
176192
# @param [String] priv Private key, in hex
177193
# @param [String] address Public key, in hex
178194
# @param [Integer] amount The amount of ERC20 tokens to send

0 commit comments

Comments
 (0)