How to charge percentage of transaction cost? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Error: “message”:“function ”Ballot“ arguments must include ”proposalNames“”}Solidity browser compiler function gas cost vs actual transaction costEstimating gas cost of a transaction function with web3Transaction write limitshow to estimate gas cost?How is Ethereum Wallet's transaction cost calculated?Web3 sendSignedTransaction Transaction costInternal transaction cost vs externalUntransferable token percentageSolidity Language: Fractional Percentage Numbers:

Is my guitar’s action too high?

Unix AIX passing variable and arguments to expect and spawn

Are bags of holding fireproof?

2 sample t test for sample sizes - 30,000 and 150,000

Assertions In A Mock Callout Test

Can gravitational waves pass through a black hole?

Why are two-digit numbers in Jonathan Swift's "Gulliver's Travels" (1726) written in "German style"?

Reflections in a Square

How to break 信じようとしていただけかも知れない into separate parts?

How do I deal with an erroneously large refund?

Why did Europeans not widely domesticate foxes?

What could prevent concentrated local exploration?

Can I take recommendation from someone I met at a conference?

Would I be safe to drive a 23 year old truck for 7 hours / 450 miles?

"Destructive force" carried by a B-52?

Are there any AGPL-style licences that require source code modifications to be public?

Etymology of 見舞い

Determine the generator of an ideal of ring of integers

tabularx column has extra padding at right?

Is Bran literally the world's memory?

Is Vivien of the Wilds + Wilderness Reclimation a competitive combo?

Why does BitLocker not use RSA?

What helicopter has the most rotor blades?

Why is ArcGIS Pro not symbolizing my entire range of values?



How to charge percentage of transaction cost?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Error: “message”:“function ”Ballot“ arguments must include ”proposalNames“”}Solidity browser compiler function gas cost vs actual transaction costEstimating gas cost of a transaction function with web3Transaction write limitshow to estimate gas cost?How is Ethereum Wallet's transaction cost calculated?Web3 sendSignedTransaction Transaction costInternal transaction cost vs externalUntransferable token percentageSolidity Language: Fractional Percentage Numbers:










1















Example:



uint public createPostCost = 0.0003 ether;

function createPost(bytes32 _post)
public payable
require(msg.value >= createPostCost);
Post memory newPost;
newPost.post = _post;



Within a discussion forum dapp, the current implementation charges users a set fee per post created. I would like the charge to be dynamic, say 10% of the gas cost of the transaction. Is this possible to implement in the contract? Or is this something for front-end web3 to handle?










share|improve this question




























    1















    Example:



    uint public createPostCost = 0.0003 ether;

    function createPost(bytes32 _post)
    public payable
    require(msg.value >= createPostCost);
    Post memory newPost;
    newPost.post = _post;



    Within a discussion forum dapp, the current implementation charges users a set fee per post created. I would like the charge to be dynamic, say 10% of the gas cost of the transaction. Is this possible to implement in the contract? Or is this something for front-end web3 to handle?










    share|improve this question


























      1












      1








      1








      Example:



      uint public createPostCost = 0.0003 ether;

      function createPost(bytes32 _post)
      public payable
      require(msg.value >= createPostCost);
      Post memory newPost;
      newPost.post = _post;



      Within a discussion forum dapp, the current implementation charges users a set fee per post created. I would like the charge to be dynamic, say 10% of the gas cost of the transaction. Is this possible to implement in the contract? Or is this something for front-end web3 to handle?










      share|improve this question
















      Example:



      uint public createPostCost = 0.0003 ether;

      function createPost(bytes32 _post)
      public payable
      require(msg.value >= createPostCost);
      Post memory newPost;
      newPost.post = _post;



      Within a discussion forum dapp, the current implementation charges users a set fee per post created. I would like the charge to be dynamic, say 10% of the gas cost of the transaction. Is this possible to implement in the contract? Or is this something for front-end web3 to handle?







      solidity web3js contract-development gas gas-limit






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 2 hours ago









      shane

      2,4274832




      2,4274832










      asked 2 hours ago









      Jaren LJaren L

      313




      313




















          1 Answer
          1






          active

          oldest

          votes


















          2














          Yes, you can let the charge be a function of the gas of the transaction. You would do something like this:



          uint256 charge = gasleft() / 10;



          This is sensitive and you should know that gasleft() returns the amount of gas available at that point in the execution. Therefore, if you call gasleft() at the beginning of a function, the number will be higher than at the end of the function.



          Additionally, someone may send a lot of unnecessary gas, so they could end up paying a lot.



          My opinion is that it is best to handle this on the front-end.



          Edit



          If you are trying to take into account the gasPrice, you can use tx.gasprice. See here for more information.






          share|improve this answer




















          • 1





            Psst, msg.gas has been removed and replaced by gasleft as per solidity.readthedocs.io/en/latest/…

            – Lauri Peltonen
            2 hours ago











          • Ahh yes. Thank you.

            – shane
            2 hours ago











          Your Answer








          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "642"
          ;
          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
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fethereum.stackexchange.com%2fquestions%2f69960%2fhow-to-charge-percentage-of-transaction-cost%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









          2














          Yes, you can let the charge be a function of the gas of the transaction. You would do something like this:



          uint256 charge = gasleft() / 10;



          This is sensitive and you should know that gasleft() returns the amount of gas available at that point in the execution. Therefore, if you call gasleft() at the beginning of a function, the number will be higher than at the end of the function.



          Additionally, someone may send a lot of unnecessary gas, so they could end up paying a lot.



          My opinion is that it is best to handle this on the front-end.



          Edit



          If you are trying to take into account the gasPrice, you can use tx.gasprice. See here for more information.






          share|improve this answer




















          • 1





            Psst, msg.gas has been removed and replaced by gasleft as per solidity.readthedocs.io/en/latest/…

            – Lauri Peltonen
            2 hours ago











          • Ahh yes. Thank you.

            – shane
            2 hours ago















          2














          Yes, you can let the charge be a function of the gas of the transaction. You would do something like this:



          uint256 charge = gasleft() / 10;



          This is sensitive and you should know that gasleft() returns the amount of gas available at that point in the execution. Therefore, if you call gasleft() at the beginning of a function, the number will be higher than at the end of the function.



          Additionally, someone may send a lot of unnecessary gas, so they could end up paying a lot.



          My opinion is that it is best to handle this on the front-end.



          Edit



          If you are trying to take into account the gasPrice, you can use tx.gasprice. See here for more information.






          share|improve this answer




















          • 1





            Psst, msg.gas has been removed and replaced by gasleft as per solidity.readthedocs.io/en/latest/…

            – Lauri Peltonen
            2 hours ago











          • Ahh yes. Thank you.

            – shane
            2 hours ago













          2












          2








          2







          Yes, you can let the charge be a function of the gas of the transaction. You would do something like this:



          uint256 charge = gasleft() / 10;



          This is sensitive and you should know that gasleft() returns the amount of gas available at that point in the execution. Therefore, if you call gasleft() at the beginning of a function, the number will be higher than at the end of the function.



          Additionally, someone may send a lot of unnecessary gas, so they could end up paying a lot.



          My opinion is that it is best to handle this on the front-end.



          Edit



          If you are trying to take into account the gasPrice, you can use tx.gasprice. See here for more information.






          share|improve this answer















          Yes, you can let the charge be a function of the gas of the transaction. You would do something like this:



          uint256 charge = gasleft() / 10;



          This is sensitive and you should know that gasleft() returns the amount of gas available at that point in the execution. Therefore, if you call gasleft() at the beginning of a function, the number will be higher than at the end of the function.



          Additionally, someone may send a lot of unnecessary gas, so they could end up paying a lot.



          My opinion is that it is best to handle this on the front-end.



          Edit



          If you are trying to take into account the gasPrice, you can use tx.gasprice. See here for more information.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited 2 hours ago

























          answered 2 hours ago









          shaneshane

          2,4274832




          2,4274832







          • 1





            Psst, msg.gas has been removed and replaced by gasleft as per solidity.readthedocs.io/en/latest/…

            – Lauri Peltonen
            2 hours ago











          • Ahh yes. Thank you.

            – shane
            2 hours ago












          • 1





            Psst, msg.gas has been removed and replaced by gasleft as per solidity.readthedocs.io/en/latest/…

            – Lauri Peltonen
            2 hours ago











          • Ahh yes. Thank you.

            – shane
            2 hours ago







          1




          1





          Psst, msg.gas has been removed and replaced by gasleft as per solidity.readthedocs.io/en/latest/…

          – Lauri Peltonen
          2 hours ago





          Psst, msg.gas has been removed and replaced by gasleft as per solidity.readthedocs.io/en/latest/…

          – Lauri Peltonen
          2 hours ago













          Ahh yes. Thank you.

          – shane
          2 hours ago





          Ahh yes. Thank you.

          – shane
          2 hours ago

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Ethereum 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%2fethereum.stackexchange.com%2fquestions%2f69960%2fhow-to-charge-percentage-of-transaction-cost%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

          Are there any AGPL-style licences that require source code modifications to be public? Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Force derivative works to be publicAre there any GPL like licenses for Apple App Store?Do you violate the GPL if you provide source code that cannot be compiled?GPL - is it distribution to use libraries in an appliance loaned to customers?Distributing App for free which uses GPL'ed codeModifications of server software under GPL, with web/CLI interfaceDoes using an AGPLv3-licensed library prevent me from dual-licensing my own source code?Can I publish only select code under GPLv3 from a private project?Is there published precedent regarding the scope of covered work that uses AGPL software?If MIT licensed code links to GPL licensed code what should be the license of the resulting binary program?If I use a public API endpoint that has its source code licensed under AGPL in my app, do I need to disclose my source?

          2013 GY136 Descoberta | Órbita | Referências Menu de navegação«List Of Centaurs and Scattered-Disk Objects»«List of Known Trans-Neptunian Objects»

          Button changing it's text & action. Good or terrible? The 2019 Stack Overflow Developer Survey Results Are Inchanging text on user mouseoverShould certain functions be “hard to find” for powerusers to discover?Custom liking function - do I need user login?Using different checkbox style for different checkbox behaviorBest Practices: Save and Exit in Software UIInteraction with remote validated formMore efficient UI to progress the user through a complicated process?Designing a popup notice for a gameShould bulk-editing functions be hidden until a table row is selected, or is there a better solution?Is it bad practice to disable (replace) the context menu?