Smart contract transaction of 0 XTZ throwing error from TEZBOXSpending XTZ held in an implicit account from a smart contractHow to upgrade a smart contract?Smart contract for bakersmethod for calling to entry point of contract instance (?) created by contract.createMichelson_v1_printer.unparse error with originate contractTezos CLI, Ledger Nano, Tezbox and HD Wallet: problem accessing my xtzfixing a ledger/tezbox device error problemTransaction failedHow to get smart-contract storage data?Can I withdraw funds from an empty smart contract?
Why did the Apple IIe make a hideous noise if you inserted the disk upside down?
How does the 'five minute adventuring day' affect class balance?
Is it OK to say "The situation is pregnant with a crisis"?
How do I tell my girlfriend she's been buying me books by the wrong author for the last nine months?
My mom helped me cosign a car and now she wants to take it
Why didn't Caesar move against Sextus Pompey immediately after Munda?
What is this fluorinated organic substance?
Two palindromes are not enough
What does 'in attendance' mean on an England death certificate?
ATMEGA328P-U vs ATMEGA328-PU
Why are symbols not written in words?
What is the meaning of "it" in "as luck would have it"?
Russian equivalents of 能骗就骗 (if you can cheat, then cheat)
What could a Medieval society do with excess animal blood?
Understanding the as-if rule, "the program was executed as written"
What prevents a US state from colonizing a smaller state?
Why didn't Avengers simply jump 5 years back?
What is my external HDD doing?
How did they film the Invisible Man being invisible in 1933?
How useful would a hydroelectric power plant be in the post-apocalypse world?
Why will we fail creating a self sustaining off world colony?
Tricolour nonogram
German idiomatic equivalents of 能骗就骗 (if you can cheat, then cheat)
Is there a word for the act of simultaneously pulling and twisting an object?
Smart contract transaction of 0 XTZ throwing error from TEZBOX
Spending XTZ held in an implicit account from a smart contractHow to upgrade a smart contract?Smart contract for bakersmethod for calling to entry point of contract instance (?) created by contract.createMichelson_v1_printer.unparse error with originate contractTezos CLI, Ledger Nano, Tezbox and HD Wallet: problem accessing my xtzfixing a ledger/tezbox device error problemTransaction failedHow to get smart-contract storage data?Can I withdraw funds from an empty smart contract?
I am trying to send transaction to KT1BRudFZEXLYANgmZTka1xCDN5nWTMWY7SZ to complete ledger nano verification using TEZBOX but I am getting error as below, can someone please guide me?
"status":"failed","errors":["kind":"temporary","id":"proto.004-Pt24m4xi.gas_exhausted.operation"]


smart-contracts tezbox
New contributor
Hetal Thakkar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I am trying to send transaction to KT1BRudFZEXLYANgmZTka1xCDN5nWTMWY7SZ to complete ledger nano verification using TEZBOX but I am getting error as below, can someone please guide me?
"status":"failed","errors":["kind":"temporary","id":"proto.004-Pt24m4xi.gas_exhausted.operation"]


smart-contracts tezbox
New contributor
Hetal Thakkar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I am trying to send transaction to KT1BRudFZEXLYANgmZTka1xCDN5nWTMWY7SZ to complete ledger nano verification using TEZBOX but I am getting error as below, can someone please guide me?
"status":"failed","errors":["kind":"temporary","id":"proto.004-Pt24m4xi.gas_exhausted.operation"]


smart-contracts tezbox
New contributor
Hetal Thakkar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I am trying to send transaction to KT1BRudFZEXLYANgmZTka1xCDN5nWTMWY7SZ to complete ledger nano verification using TEZBOX but I am getting error as below, can someone please guide me?
"status":"failed","errors":["kind":"temporary","id":"proto.004-Pt24m4xi.gas_exhausted.operation"]


smart-contracts tezbox
smart-contracts tezbox
New contributor
Hetal Thakkar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Hetal Thakkar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Hetal Thakkar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 9 hours ago
Hetal ThakkarHetal Thakkar
61 bronze badge
61 bronze badge
New contributor
Hetal Thakkar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Hetal Thakkar is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
It seems you did not change the Gas Limit parameter. Default value is 10600, you need 13025.
- From the Send interface with Advanced Options displayed, input the following information:
Destination Address: KT1BRudFZEXLYANgmZTka1xCDN5nWTMWY7SZ
Amount: 0
XTZ Fee (recommended): Medium – 5000 Parameters: (Leave empty)
Gas limit: 13,025
Storage limit: 300
This too-low limit causes the "gas_exhausted" error.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "698"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Hetal Thakkar is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f1381%2fsmart-contract-transaction-of-0-xtz-throwing-error-from-tezbox%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
It seems you did not change the Gas Limit parameter. Default value is 10600, you need 13025.
- From the Send interface with Advanced Options displayed, input the following information:
Destination Address: KT1BRudFZEXLYANgmZTka1xCDN5nWTMWY7SZ
Amount: 0
XTZ Fee (recommended): Medium – 5000 Parameters: (Leave empty)
Gas limit: 13,025
Storage limit: 300
This too-low limit causes the "gas_exhausted" error.
add a comment |
It seems you did not change the Gas Limit parameter. Default value is 10600, you need 13025.
- From the Send interface with Advanced Options displayed, input the following information:
Destination Address: KT1BRudFZEXLYANgmZTka1xCDN5nWTMWY7SZ
Amount: 0
XTZ Fee (recommended): Medium – 5000 Parameters: (Leave empty)
Gas limit: 13,025
Storage limit: 300
This too-low limit causes the "gas_exhausted" error.
add a comment |
It seems you did not change the Gas Limit parameter. Default value is 10600, you need 13025.
- From the Send interface with Advanced Options displayed, input the following information:
Destination Address: KT1BRudFZEXLYANgmZTka1xCDN5nWTMWY7SZ
Amount: 0
XTZ Fee (recommended): Medium – 5000 Parameters: (Leave empty)
Gas limit: 13,025
Storage limit: 300
This too-low limit causes the "gas_exhausted" error.
It seems you did not change the Gas Limit parameter. Default value is 10600, you need 13025.
- From the Send interface with Advanced Options displayed, input the following information:
Destination Address: KT1BRudFZEXLYANgmZTka1xCDN5nWTMWY7SZ
Amount: 0
XTZ Fee (recommended): Medium – 5000 Parameters: (Leave empty)
Gas limit: 13,025
Storage limit: 300
This too-low limit causes the "gas_exhausted" error.
answered 3 hours ago
Clement J.Clement J.
3211 silver badge10 bronze badges
3211 silver badge10 bronze badges
add a comment |
add a comment |
Hetal Thakkar is a new contributor. Be nice, and check out our Code of Conduct.
Hetal Thakkar is a new contributor. Be nice, and check out our Code of Conduct.
Hetal Thakkar is a new contributor. Be nice, and check out our Code of Conduct.
Hetal Thakkar is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Tezos Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f1381%2fsmart-contract-transaction-of-0-xtz-throwing-error-from-tezbox%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown