Skip to content

Commit

Permalink
🏷 Version bump 1.1.33
Browse files Browse the repository at this point in the history
  • Loading branch information
coccoinomane committed Feb 29, 2024
1 parent 240ff32 commit 8d7a680
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "web3cli"
version = "1.1.32"
version = "1.1.33"
description = "Interact with blockchains and smart contracts using the command line"
authors = [
{name = "coccoinomane", email = "[email protected]"},
Expand Down
2 changes: 1 addition & 1 deletion src/web3cli/framework/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, *args: Any, **kw: Any) -> None:
self.signer: Signer
self.chain: Chain
self.rpc: Rpc
self.priority_fee: int
self.priority_fee: float
self.db: SqliteDatabase
self.models: List[Model]

Expand Down
2 changes: 1 addition & 1 deletion src/web3cli/helpers/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ def priority_fee(
list(name_or_flags) or ["--priority-fee", "--tip"],
{
"help": "max priority fee (tip) in gwei you are willing to spend for a transaction",
"type": int,
"type": float,
"default": 1,
}
| kwargs,
Expand Down
4 changes: 2 additions & 2 deletions src/web3core/helpers/tx.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def send_contract_tx(
value_in_wei: Wei = None,
nonce: Nonce = None,
gas_limit: int = None,
max_priority_fee_in_gwei: int = None,
max_priority_fee_in_gwei: float = None,
) -> TxLife:
"""Send a transaction to a contract function, and return its details
Expand All @@ -45,7 +45,7 @@ def send_contract_tx(
- value_in_wei (Wei): The value to send with the transaction.
- nonce (Nonce): The nonce to use for the transaction.
- gas_limit (int): The gas limit to use for the transaction.
- max_priority_fee_in_gwei (int): The max priority fee per gas to use
- max_priority_fee_in_gwei (float): The max priority fee per gas to use
for the transaction.
RETURNS
Expand Down

0 comments on commit 8d7a680

Please sign in to comment.