Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.
This repository was archived by the owner on May 3, 2024. It is now read-only.

Please review the function of manually setting the gas fee. #146

@ArtWide

Description

@ArtWide

Recently, there has been a large change in gas fees for EVM chains.

I often have �transactions failing or having to wait for a response for too long, and I modify the SDK myself as needed to adjust the gas fee.

Example)
contract_wapper.py

tx = func(*args).buildTransaction(
TxParams(gas_price=provider.eth.gas_price).as_dict()
)

boost = 1.5
tx = func(*args).buildTransaction(
TxParams(gas_price=int(provider.eth.gas_price * boost)).as_dict()
)

I hope these features will be officially supported.
Gas fees vary from network to network, so it would be helpful for them if users specified % gas fees to increase.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions