- 
                Notifications
    You must be signed in to change notification settings 
- Fork 323
automatic gas estimation #855
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
79e4602
              a116e13
              e50c75a
              772259b
              7183940
              f423aae
              c326a8a
              38a8828
              6dc76af
              42235fb
              9843e2c
              275a400
              b8fa44c
              e68c6d8
              2ce9250
              d06f6ba
              07483f9
              8d5b6fe
              5a7e024
              7c8b24e
              f21d606
              5568fed
              8fb178e
              File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -13,20 +13,34 @@ if [[ $2 ]]; then | |
| data=$(seth calldata "${@:2}") | ||
| fi | ||
|  | ||
| data=${data:-0x} | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can we put this in an  | ||
|  | ||
| if [[ -z "$SETH_CREATE" ]]; then | ||
| TO=$(seth --to-address "$1") | ||
| There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why only for  There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If SETH_CREATE is unset, then we are doing a normal transaction that has a recipient. If not, we are creating a contract, and TO must be unset since this is a requirement for a contract creation tx. | ||
| fi | ||
|  | ||
| if [[ -z "$ETH_GAS" ]]; then | ||
| if [[ $SETH_CREATE ]]; then | ||
| ETH_GAS=$(seth estimate --create $data) | ||
| else | ||
| ETH_GAS=$(seth estimate $TO $data) | ||
| fi | ||
| fi | ||
|  | ||
| args=( | ||
| --from "$(seth --to-address "$ETH_FROM")" | ||
| --nonce "${ETH_NONCE:-$(seth nonce "$ETH_FROM")}" | ||
| --chain-id "$(seth chain-id)" | ||
| --gas-price "${ETH_GAS_PRICE:-$(seth gas-price)}" | ||
| --gas-limit "${ETH_GAS:-200000}" | ||
| --gas-limit "$ETH_GAS" | ||
| --value "$value" | ||
| --data "${data:-0x}" | ||
| --data "$data" | ||
| ) | ||
|  | ||
| if [[ $SETH_CREATE ]]; then | ||
| args+=(--create) | ||
| else | ||
| args+=(--to "$(seth --to-address "$1")") | ||
| args+=(--to "$TO") | ||
| fi | ||
|  | ||
| if [[ $ETH_PRIO_FEE ]]; then | ||
|  | ||
Uh oh!
There was an error while loading. Please reload this page.