Crypto libraries Documentation
Overview The new libs.web3lib library is designed to simplify and secure transactions on Ethereum-compatible (EVM) blockchains. This library is packed with robust features like:
Multi-network support: Interact with over 30 EVM chains effortlessly.
Automatic gas estimation: Avoid under- or overestimating gas.
Retry logic: Optionally retry transactions on transient errors.
Proxy: The library uses a large set of proxies, which minimizes rate limit errors.
Centralized key management: Easily store and retrieve private keys using Telebot Creator's MongoDB integration.
Deprecated Libraries Please note that the following libraries are now deprecated and no longer supported:
libs.Polygon
libs.ARB
libs.TTcoin
libs.Tomochain
We strongly recommend using libs.web3lib for all new projects.\
Below is a comprehensive explanation of each function, its parameters, and how to use them.
sendNativeCoin(...)
sendNativeCoin(...)
This function allows you to send native coins like ETH, BNB, MATIC, etc., on supported EVM chains. It’s ideal for simple value transfers without smart contracts.
Function Signature
Parameter Details
value
float
Amount of native coin (e.g., ETH, BNB) to send.
to
str
The recipient's wallet address.
rpc_url
Optional[str]
Custom RPC URL for the target network. If not provided, you must define the network
parameter.
gas
Optional[int]
Manually set gas limit. If not provided, gas will be estimated automatically.
gasPrice
Optional[int]
Specify the gas price. Defaults to network’s current gas price if omitted.
private_key
Optional[str]
Your wallet’s private key for signing the transaction. Required for successful execution.
increase_gas
Optional[int]
Increase the estimated gas price by a percentage. Useful for faster confirmations.
wait_for_confirmation
bool
If True
, the function waits until the transaction is confirmed. Default is True
.
confirmation_timeout
int
Maximum seconds to wait for confirmation. Default is 15
.
network
Optional[str]
Instead of defining an rpc_url
, specify the network name (e.g., "ethereum"
, "bsc"
, "polygon"
).
estimate_gas
bool
If True
, gas will be estimated automatically. Recommended for convenience. Default is True
.
retry
bool
If True
, the function retries the transaction once if it fails. Useful to bypass common errors like "nonce too low". Default is False
.
sendETHER(...)
sendETHER(...)
This function is used to send ERC-20 tokens by specifying a token contract address. It's designed for token transfers that require interacting with smart contracts.
Function Signature
Parameter Details
value
float
Amount of tokens to send.
to
str
The recipient's wallet address.
rpc_url
Optional[str]
Custom RPC URL for the target network. If not provided, you must define the network
parameter.
gas
Optional[int]
Manually set gas limit. If not provided, gas will be estimated automatically.
gasPrice
Optional[int]
Specify the gas price. Defaults to network’s current gas price if omitted.
private_key
Optional[str]
Your wallet’s private key for signing the transaction. Required for successful execution.
increase_gas
Optional[int]
Increase the estimated gas price by a percentage. Useful for faster confirmations.
wait_for_confirmation
bool
If True
, the function waits until the transaction is confirmed. Default is True
.
confirmation_timeout
int
Maximum seconds to wait for confirmation. Default is 15
.
network
Optional[str]
Instead of defining an rpc_url
, specify the network name (e.g., "ethereum"
, "bsc"
, "polygon"
).
contract_address
Optional[str]
The ERC-20 contract address. Required for token transfers.
estimate_gas
bool
If True
, gas will be estimated automatically. Recommended for convenience. Default is True
.
retry
bool
If True
, the function retries the transaction once if it fails. Useful to bypass common errors like "nonce too low". Default is False
.
Supported Networks
Below is a table listing all the EVM chains supported by libs.web3lib:
Ethereum
1
BSC
56
Polygon
137
Avalanche
43114
Fantom
250
Arbitrum
42161
Optimism
10
Harmony
1666600000
Cronos
25
Moonriver
1285
Moonbeam
1284
Celo
42220
Heco
128
Okexchain
66
Xdai
100
KCC
321
Metis
1088
Aurora
1313161554
Base
8453
ZKSync
324
Scroll
534352
Linea
59144
Boba
288
Kava
2222
Fuse
122
Evmos
9001
Canto
7700
Astar
592
Telos
40
Rootstock
30
TTcoin
22023
Usage Examples
Example 1: Sending a Native Coin Transfer (ETH)
Example 2: Sending an ERC‑20 Token Transfer
Example 3: Using Network Parameter Only
Final Notes
Deprecated Libraries: The old libraries (libs.Polygon, libs.ARB, libs.TTcoin, libs.Tomochain) are now deprecated and should no longer be used. Please update your projects to use libs.web3lib, which offers a unified and more powerful interface for all EVM chains.
Last updated