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 Vivien of the Wilds + Wilderness Reclamation a competitive combo?

What's the connection between Mr. Nancy and fried chicken?

Like totally amazing interchangeable sister outfit accessory swapping or whatever

What is the definining line between a helicopter and a drone a person can ride in?

Why aren't these two solutions equivalent? Combinatorics problem

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

Why do some non-religious people reject artificial consciousness?

Is "ein Herz wie das meine" an antiquated or colloquial use of the possesive pronoun?

false 'Security alert' from Google - every login generates mails from 'no-reply@accounts.google.com'

What helicopter has the most rotor blades?

Etymology of 見舞い

When speaking, how do you change your mind mid-sentence?

Why do C and C++ allow the expression (int) + 4*5?

Why does BitLocker not use RSA?

Does the Pact of the Blade warlock feature allow me to customize the properties of the pact weapon I create?

Can the van der Waals coefficients be negative in the van der Waals equation for real gases?

How to leave only the following strings?

Can 'non' with gerundive mean both lack of obligation and negative obligation?

Unix AIX passing variable and arguments to expect and spawn

lm and glm function in R

Marquee sign letters

What's the difference between using dependency injection with a container and using a service locator?

Does GDPR cover the collection of data by websites that crawl the web and resell user data

How to ask rejected full-time candidates to apply to teach individual courses?



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 5 hours ago









      shane

      2,4524832




      2,4524832










      asked 5 hours ago









      Jaren LJaren L

      335




      335




















          1 Answer
          1






          active

          oldest

          votes


















          3














          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




















          • 3





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

            – Lauri Peltonen
            5 hours ago











          • Ahh yes. Thank you.

            – shane
            5 hours ago











          • Ah that makes sense. If I made a require to check the msg.value >= 10% of tx.gasprice, would that work? Would there be discrepancies between generating the web3 function call price + value and the contract value?

            – Jaren L
            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









          3














          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




















          • 3





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

            – Lauri Peltonen
            5 hours ago











          • Ahh yes. Thank you.

            – shane
            5 hours ago











          • Ah that makes sense. If I made a require to check the msg.value >= 10% of tx.gasprice, would that work? Would there be discrepancies between generating the web3 function call price + value and the contract value?

            – Jaren L
            2 hours ago
















          3














          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




















          • 3





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

            – Lauri Peltonen
            5 hours ago











          • Ahh yes. Thank you.

            – shane
            5 hours ago











          • Ah that makes sense. If I made a require to check the msg.value >= 10% of tx.gasprice, would that work? Would there be discrepancies between generating the web3 function call price + value and the contract value?

            – Jaren L
            2 hours ago














          3












          3








          3







          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 5 hours ago

























          answered 5 hours ago









          shaneshane

          2,4524832




          2,4524832







          • 3





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

            – Lauri Peltonen
            5 hours ago











          • Ahh yes. Thank you.

            – shane
            5 hours ago











          • Ah that makes sense. If I made a require to check the msg.value >= 10% of tx.gasprice, would that work? Would there be discrepancies between generating the web3 function call price + value and the contract value?

            – Jaren L
            2 hours ago













          • 3





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

            – Lauri Peltonen
            5 hours ago











          • Ahh yes. Thank you.

            – shane
            5 hours ago











          • Ah that makes sense. If I made a require to check the msg.value >= 10% of tx.gasprice, would that work? Would there be discrepancies between generating the web3 function call price + value and the contract value?

            – Jaren L
            2 hours ago








          3




          3





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

          – Lauri Peltonen
          5 hours ago





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

          – Lauri Peltonen
          5 hours ago













          Ahh yes. Thank you.

          – shane
          5 hours ago





          Ahh yes. Thank you.

          – shane
          5 hours ago













          Ah that makes sense. If I made a require to check the msg.value >= 10% of tx.gasprice, would that work? Would there be discrepancies between generating the web3 function call price + value and the contract value?

          – Jaren L
          2 hours ago






          Ah that makes sense. If I made a require to check the msg.value >= 10% of tx.gasprice, would that work? Would there be discrepancies between generating the web3 function call price + value and the contract value?

          – Jaren L
          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

          Magento 2 - Add success message with knockout 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?Success / Error message on ajax request$.widget is not a function when loading a homepage after add custom jQuery on custom themeHow can bind jQuery to current document in Magento 2 When template load by ajaxRedirect page using plugin in Magento 2Magento 2 - Update quantity and totals of cart page without page reload?Magento 2: Quote data not loaded on knockout checkoutMagento 2 : I need to change add to cart success message after adding product into cart through pluginMagento 2.2.5 How to add additional products to cart from new checkout step?Magento 2 Add error/success message with knockoutCan't validate Post Code on checkout page

          Fil:Tokke komm.svg

          Where did Arya get these scars? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why did Arya refuse to end it?Has the pronunciation of Arya Stark's name changed?Has Arya forgiven people?Why did Arya Stark lose her vision?Why can Arya still use the faces?Has the Narrow Sea become narrower?Does Arya Stark know how to make poisons outside of the House of Black and White?Why did Nymeria leave Arya?Why did Arya not kill the Lannister soldiers she encountered in the Riverlands?What is the current canonical age of Sansa, Bran and Arya Stark?