What is the adequate fee for a reveal operation?How does Tezos manage its mempool?What elliptic curves are used by Tezos?what this 2 empty [] mean?What is the difference between implicit vs originated accounts?How does tezos-client compute a transaction fee?Why a reveal operation?How to manage rewards for small delegators?how to transaction from a KT1 address to another KT1 address?Can I add metadata to a transfer operation?When setting up a contract, what do the fields mean?

Are relativity and doppler effect related?

How do I change two letters closest to a string and one letter immediately after a string using Notepad++?

Is there a symmetric-key algorithm which we can use for creating a signature?

Why does a Star of David appear at a rally with Francisco Franco?

What's the meaning of a knight fighting a snail in medieval book illustrations?

Instead of a Universal Basic Income program, why not implement a "Universal Basic Needs" program?

My adviser wants to be the first author

Does this sum go infinity?

What are substitutions for coconut in curry?

Why does overlay work only on the first tcolorbox?

What is the Japanese sound word for the clinking of money?

What is "focus distance lower/upper" and how is it different from depth of field?

Why do passenger jet manufacturers design their planes with stall prevention systems?

Tikz picture of two mathematical functions

Do the common programs (for example: "ls", "cat") in Linux and BSD come from the same source code?

Are Roman Catholic priests ever addressed as pastor

How do you talk to someone whose loved one is dying?

Is a party consisting of only a bard, a cleric, and a warlock functional long-term?

Is it insecure to send a password in a `curl` command?

New passport but visa is in old (lost) passport

World War I as a war of liberals against authoritarians?

Why no Iridium-level flares from other satellites?

A diagram about partial derivatives of f(x,y)

What is the significance behind "40 days" that often appears in the Bible?



What is the adequate fee for a reveal operation?


How does Tezos manage its mempool?What elliptic curves are used by Tezos?what this 2 empty [] mean?What is the difference between implicit vs originated accounts?How does tezos-client compute a transaction fee?Why a reveal operation?How to manage rewards for small delegators?how to transaction from a KT1 address to another KT1 address?Can I add metadata to a transfer operation?When setting up a contract, what do the fields mean?













3















When transfering funds to a non-revealed Tezos account, one must pay a "reveal fee". What is the optimal value to use for this fee? Or is this a fixed amount? What would be the adequate fee for a reveal operation?










share|improve this question


























    3















    When transfering funds to a non-revealed Tezos account, one must pay a "reveal fee". What is the optimal value to use for this fee? Or is this a fixed amount? What would be the adequate fee for a reveal operation?










    share|improve this question
























      3












      3








      3








      When transfering funds to a non-revealed Tezos account, one must pay a "reveal fee". What is the optimal value to use for this fee? Or is this a fixed amount? What would be the adequate fee for a reveal operation?










      share|improve this question














      When transfering funds to a non-revealed Tezos account, one must pay a "reveal fee". What is the optimal value to use for this fee? Or is this a fixed amount? What would be the adequate fee for a reveal operation?







      account transfer reveal fee






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 9 hours ago









      Luiz MilfontLuiz Milfont

      1025




      1025




















          2 Answers
          2






          active

          oldest

          votes


















          5














          The question as stated confuses different things.



          A "reveal" operation is an operation that writes on the chain the public key associated with a public key hash for an implicit account. The fee associated with this operation is up for the sender to decide, though most bakers implement default minimum fees (in this case it is currently 1267µꜩ).



          The creation of a new account by sending tokens to an implicit address is not a "reveal" operation as the public key needs not be known in this operation. However, it does trigger the creation of an implicit account on the chain. Storage cost has to be paid, and it is not a part of the transaction fee. It is deducted directly from the account making the transaction, though it is subject to a cap specified by the sender. The default value for the storage cost incurred is indeed 0.257 XTZ.






          share|improve this answer




















          • 1





            Thank you both. My intention is, indeed, specify a fee to cover the costs of a creation of a new account when sending tokens to it.

            – Luiz Milfont
            7 hours ago


















          2














          The fee for adding a new account to the global state (--burn-cap with tezos-client) is 0.257 XTZ.



          The origination burn is calculated as Tez_repr.(cost_per_byte *? (Int64.of_int origination_size)).



          cost_per_byte is 0.001 XTZ. It is 1000 mutez and 1,000,000 mutez == 1 tez.



          origination_size is 257.



          Due to that the resulting cost for an origination of a completely new account is 257,000 mutez or 0.257 tez.



          This is defined in proto_alpha/lib_protocol/fee_storage.ml, proto_alpha/lib_protocol/constants_repr.ml, and proto_alpha/lib_protocol/qty_repr.ml






          share|improve this answer




















          • 1





            That's incorrect, the origination burn is not part of the transaction fee.

            – Arthur B
            7 hours ago











          • Yes, you are correct. I have edited the above answer to clarify that the fee that I describe there is for adding a new account to the state.

            – adrian
            7 hours ago











          • I suggest keeping the terminology separate: "Fee" means paid to the baker. "Burn" means destroyed.

            – Tom
            4 hours ago










          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
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f786%2fwhat-is-the-adequate-fee-for-a-reveal-operation%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          2 Answers
          2






          active

          oldest

          votes








          2 Answers
          2






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          5














          The question as stated confuses different things.



          A "reveal" operation is an operation that writes on the chain the public key associated with a public key hash for an implicit account. The fee associated with this operation is up for the sender to decide, though most bakers implement default minimum fees (in this case it is currently 1267µꜩ).



          The creation of a new account by sending tokens to an implicit address is not a "reveal" operation as the public key needs not be known in this operation. However, it does trigger the creation of an implicit account on the chain. Storage cost has to be paid, and it is not a part of the transaction fee. It is deducted directly from the account making the transaction, though it is subject to a cap specified by the sender. The default value for the storage cost incurred is indeed 0.257 XTZ.






          share|improve this answer




















          • 1





            Thank you both. My intention is, indeed, specify a fee to cover the costs of a creation of a new account when sending tokens to it.

            – Luiz Milfont
            7 hours ago















          5














          The question as stated confuses different things.



          A "reveal" operation is an operation that writes on the chain the public key associated with a public key hash for an implicit account. The fee associated with this operation is up for the sender to decide, though most bakers implement default minimum fees (in this case it is currently 1267µꜩ).



          The creation of a new account by sending tokens to an implicit address is not a "reveal" operation as the public key needs not be known in this operation. However, it does trigger the creation of an implicit account on the chain. Storage cost has to be paid, and it is not a part of the transaction fee. It is deducted directly from the account making the transaction, though it is subject to a cap specified by the sender. The default value for the storage cost incurred is indeed 0.257 XTZ.






          share|improve this answer




















          • 1





            Thank you both. My intention is, indeed, specify a fee to cover the costs of a creation of a new account when sending tokens to it.

            – Luiz Milfont
            7 hours ago













          5












          5








          5







          The question as stated confuses different things.



          A "reveal" operation is an operation that writes on the chain the public key associated with a public key hash for an implicit account. The fee associated with this operation is up for the sender to decide, though most bakers implement default minimum fees (in this case it is currently 1267µꜩ).



          The creation of a new account by sending tokens to an implicit address is not a "reveal" operation as the public key needs not be known in this operation. However, it does trigger the creation of an implicit account on the chain. Storage cost has to be paid, and it is not a part of the transaction fee. It is deducted directly from the account making the transaction, though it is subject to a cap specified by the sender. The default value for the storage cost incurred is indeed 0.257 XTZ.






          share|improve this answer















          The question as stated confuses different things.



          A "reveal" operation is an operation that writes on the chain the public key associated with a public key hash for an implicit account. The fee associated with this operation is up for the sender to decide, though most bakers implement default minimum fees (in this case it is currently 1267µꜩ).



          The creation of a new account by sending tokens to an implicit address is not a "reveal" operation as the public key needs not be known in this operation. However, it does trigger the creation of an implicit account on the chain. Storage cost has to be paid, and it is not a part of the transaction fee. It is deducted directly from the account making the transaction, though it is subject to a cap specified by the sender. The default value for the storage cost incurred is indeed 0.257 XTZ.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 7 hours ago

























          answered 7 hours ago









          Arthur BArthur B

          2,376517




          2,376517







          • 1





            Thank you both. My intention is, indeed, specify a fee to cover the costs of a creation of a new account when sending tokens to it.

            – Luiz Milfont
            7 hours ago












          • 1





            Thank you both. My intention is, indeed, specify a fee to cover the costs of a creation of a new account when sending tokens to it.

            – Luiz Milfont
            7 hours ago







          1




          1





          Thank you both. My intention is, indeed, specify a fee to cover the costs of a creation of a new account when sending tokens to it.

          – Luiz Milfont
          7 hours ago





          Thank you both. My intention is, indeed, specify a fee to cover the costs of a creation of a new account when sending tokens to it.

          – Luiz Milfont
          7 hours ago











          2














          The fee for adding a new account to the global state (--burn-cap with tezos-client) is 0.257 XTZ.



          The origination burn is calculated as Tez_repr.(cost_per_byte *? (Int64.of_int origination_size)).



          cost_per_byte is 0.001 XTZ. It is 1000 mutez and 1,000,000 mutez == 1 tez.



          origination_size is 257.



          Due to that the resulting cost for an origination of a completely new account is 257,000 mutez or 0.257 tez.



          This is defined in proto_alpha/lib_protocol/fee_storage.ml, proto_alpha/lib_protocol/constants_repr.ml, and proto_alpha/lib_protocol/qty_repr.ml






          share|improve this answer




















          • 1





            That's incorrect, the origination burn is not part of the transaction fee.

            – Arthur B
            7 hours ago











          • Yes, you are correct. I have edited the above answer to clarify that the fee that I describe there is for adding a new account to the state.

            – adrian
            7 hours ago











          • I suggest keeping the terminology separate: "Fee" means paid to the baker. "Burn" means destroyed.

            – Tom
            4 hours ago















          2














          The fee for adding a new account to the global state (--burn-cap with tezos-client) is 0.257 XTZ.



          The origination burn is calculated as Tez_repr.(cost_per_byte *? (Int64.of_int origination_size)).



          cost_per_byte is 0.001 XTZ. It is 1000 mutez and 1,000,000 mutez == 1 tez.



          origination_size is 257.



          Due to that the resulting cost for an origination of a completely new account is 257,000 mutez or 0.257 tez.



          This is defined in proto_alpha/lib_protocol/fee_storage.ml, proto_alpha/lib_protocol/constants_repr.ml, and proto_alpha/lib_protocol/qty_repr.ml






          share|improve this answer




















          • 1





            That's incorrect, the origination burn is not part of the transaction fee.

            – Arthur B
            7 hours ago











          • Yes, you are correct. I have edited the above answer to clarify that the fee that I describe there is for adding a new account to the state.

            – adrian
            7 hours ago











          • I suggest keeping the terminology separate: "Fee" means paid to the baker. "Burn" means destroyed.

            – Tom
            4 hours ago













          2












          2








          2







          The fee for adding a new account to the global state (--burn-cap with tezos-client) is 0.257 XTZ.



          The origination burn is calculated as Tez_repr.(cost_per_byte *? (Int64.of_int origination_size)).



          cost_per_byte is 0.001 XTZ. It is 1000 mutez and 1,000,000 mutez == 1 tez.



          origination_size is 257.



          Due to that the resulting cost for an origination of a completely new account is 257,000 mutez or 0.257 tez.



          This is defined in proto_alpha/lib_protocol/fee_storage.ml, proto_alpha/lib_protocol/constants_repr.ml, and proto_alpha/lib_protocol/qty_repr.ml






          share|improve this answer















          The fee for adding a new account to the global state (--burn-cap with tezos-client) is 0.257 XTZ.



          The origination burn is calculated as Tez_repr.(cost_per_byte *? (Int64.of_int origination_size)).



          cost_per_byte is 0.001 XTZ. It is 1000 mutez and 1,000,000 mutez == 1 tez.



          origination_size is 257.



          Due to that the resulting cost for an origination of a completely new account is 257,000 mutez or 0.257 tez.



          This is defined in proto_alpha/lib_protocol/fee_storage.ml, proto_alpha/lib_protocol/constants_repr.ml, and proto_alpha/lib_protocol/qty_repr.ml







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 7 hours ago

























          answered 8 hours ago









          adrianadrian

          5917




          5917







          • 1





            That's incorrect, the origination burn is not part of the transaction fee.

            – Arthur B
            7 hours ago











          • Yes, you are correct. I have edited the above answer to clarify that the fee that I describe there is for adding a new account to the state.

            – adrian
            7 hours ago











          • I suggest keeping the terminology separate: "Fee" means paid to the baker. "Burn" means destroyed.

            – Tom
            4 hours ago












          • 1





            That's incorrect, the origination burn is not part of the transaction fee.

            – Arthur B
            7 hours ago











          • Yes, you are correct. I have edited the above answer to clarify that the fee that I describe there is for adding a new account to the state.

            – adrian
            7 hours ago











          • I suggest keeping the terminology separate: "Fee" means paid to the baker. "Burn" means destroyed.

            – Tom
            4 hours ago







          1




          1





          That's incorrect, the origination burn is not part of the transaction fee.

          – Arthur B
          7 hours ago





          That's incorrect, the origination burn is not part of the transaction fee.

          – Arthur B
          7 hours ago













          Yes, you are correct. I have edited the above answer to clarify that the fee that I describe there is for adding a new account to the state.

          – adrian
          7 hours ago





          Yes, you are correct. I have edited the above answer to clarify that the fee that I describe there is for adding a new account to the state.

          – adrian
          7 hours ago













          I suggest keeping the terminology separate: "Fee" means paid to the baker. "Burn" means destroyed.

          – Tom
          4 hours ago





          I suggest keeping the terminology separate: "Fee" means paid to the baker. "Burn" means destroyed.

          – Tom
          4 hours ago

















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftezos.stackexchange.com%2fquestions%2f786%2fwhat-is-the-adequate-fee-for-a-reveal-operation%23new-answer', 'question_page');

          );

          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







          Popular posts from this blog

          Oświęcim Innehåll Historia | Källor | Externa länkar | Navigeringsmeny50°2′18″N 19°13′17″Ö / 50.03833°N 19.22139°Ö / 50.03833; 19.2213950°2′18″N 19°13′17″Ö / 50.03833°N 19.22139°Ö / 50.03833; 19.221393089658Nordisk familjebok, AuschwitzInsidan tro och existensJewish Community i OświęcimAuschwitz Jewish Center: MuseumAuschwitz Jewish Center

          Valle di Casies Indice Geografia fisica | Origini del nome | Storia | Società | Amministrazione | Sport | Note | Bibliografia | Voci correlate | Altri progetti | Collegamenti esterni | Menu di navigazione46°46′N 12°11′E / 46.766667°N 12.183333°E46.766667; 12.183333 (Valle di Casies)46°46′N 12°11′E / 46.766667°N 12.183333°E46.766667; 12.183333 (Valle di Casies)Sito istituzionaleAstat Censimento della popolazione 2011 - Determinazione della consistenza dei tre gruppi linguistici della Provincia Autonoma di Bolzano-Alto Adige - giugno 2012Numeri e fattiValle di CasiesDato IstatTabella dei gradi/giorno dei Comuni italiani raggruppati per Regione e Provincia26 agosto 1993, n. 412Heraldry of the World: GsiesStatistiche I.StatValCasies.comWikimedia CommonsWikimedia CommonsValle di CasiesSito ufficialeValle di CasiesMM14870458910042978-6

          Typsetting diagram chases (with TikZ?) Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to define the default vertical distance between nodes?Draw edge on arcNumerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionDrawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingLine up nested tikz enviroments or how to get rid of themHow to place nodes in an absolute coordinate system in tikzCommutative diagram with curve connecting between nodesTikz with standalone: pinning tikz coordinates to page cmDrawing a Decision Diagram with Tikz and layout manager