Can you send a token and get ether back?










1














If a user sends a token, let's call it ABC, to the contract that issued that token, can the contract send back ether to the user?










share|improve this question




























    1














    If a user sends a token, let's call it ABC, to the contract that issued that token, can the contract send back ether to the user?










    share|improve this question


























      1












      1








      1







      If a user sends a token, let's call it ABC, to the contract that issued that token, can the contract send back ether to the user?










      share|improve this question















      If a user sends a token, let's call it ABC, to the contract that issued that token, can the contract send back ether to the user?







      solidity tokens






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 12 '18 at 14:01









      Paul Berg

      1,477423




      1,477423










      asked Nov 12 '18 at 11:50









      chrisfuture

      61




      61




















          2 Answers
          2






          active

          oldest

          votes


















          1














          Yes, for example:



          contract ABCToken 
          function sell(uint abcAmount) public
          uint ethAmount = myFunc(abcAmount);
          msg.sender.transfer(ethAmount);




          Of course, you probably want to make sure that this user (msg.sender) owns the specified amount of ABC tokens...






          share|improve this answer




























            1














            Adding to goodVibration's answer, you want to make sure the user actually sent what they say they sent.



            contract ABCToken 
            function sell(uint abcAmount) public
            require(token.transferFrom(msg.sender, address(this), abcAmount));
            uint ethAmount = myFunc(abcAmount);
            msg.sender.transfer(ethAmount);




            Transfer from requires the sender to first send an approve() to the token contract to set an allowance the above function can use to retrieve the user's tokens. The 2-step process is usually coordinated client-side or in another contract.



            Hope it helps.






            share|improve this answer


















            • 1




              Thanks. Risk of scribbling it up freestyle. Fixed.
              – Rob Hitchens B9lab
              Nov 12 '18 at 15:57










            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%2f62176%2fcan-you-send-a-token-and-get-ether-back%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









            1














            Yes, for example:



            contract ABCToken 
            function sell(uint abcAmount) public
            uint ethAmount = myFunc(abcAmount);
            msg.sender.transfer(ethAmount);




            Of course, you probably want to make sure that this user (msg.sender) owns the specified amount of ABC tokens...






            share|improve this answer

























              1














              Yes, for example:



              contract ABCToken 
              function sell(uint abcAmount) public
              uint ethAmount = myFunc(abcAmount);
              msg.sender.transfer(ethAmount);




              Of course, you probably want to make sure that this user (msg.sender) owns the specified amount of ABC tokens...






              share|improve this answer























                1












                1








                1






                Yes, for example:



                contract ABCToken 
                function sell(uint abcAmount) public
                uint ethAmount = myFunc(abcAmount);
                msg.sender.transfer(ethAmount);




                Of course, you probably want to make sure that this user (msg.sender) owns the specified amount of ABC tokens...






                share|improve this answer












                Yes, for example:



                contract ABCToken 
                function sell(uint abcAmount) public
                uint ethAmount = myFunc(abcAmount);
                msg.sender.transfer(ethAmount);




                Of course, you probably want to make sure that this user (msg.sender) owns the specified amount of ABC tokens...







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 12 '18 at 12:20









                goodvibration

                2,835721




                2,835721





















                    1














                    Adding to goodVibration's answer, you want to make sure the user actually sent what they say they sent.



                    contract ABCToken 
                    function sell(uint abcAmount) public
                    require(token.transferFrom(msg.sender, address(this), abcAmount));
                    uint ethAmount = myFunc(abcAmount);
                    msg.sender.transfer(ethAmount);




                    Transfer from requires the sender to first send an approve() to the token contract to set an allowance the above function can use to retrieve the user's tokens. The 2-step process is usually coordinated client-side or in another contract.



                    Hope it helps.






                    share|improve this answer


















                    • 1




                      Thanks. Risk of scribbling it up freestyle. Fixed.
                      – Rob Hitchens B9lab
                      Nov 12 '18 at 15:57















                    1














                    Adding to goodVibration's answer, you want to make sure the user actually sent what they say they sent.



                    contract ABCToken 
                    function sell(uint abcAmount) public
                    require(token.transferFrom(msg.sender, address(this), abcAmount));
                    uint ethAmount = myFunc(abcAmount);
                    msg.sender.transfer(ethAmount);




                    Transfer from requires the sender to first send an approve() to the token contract to set an allowance the above function can use to retrieve the user's tokens. The 2-step process is usually coordinated client-side or in another contract.



                    Hope it helps.






                    share|improve this answer


















                    • 1




                      Thanks. Risk of scribbling it up freestyle. Fixed.
                      – Rob Hitchens B9lab
                      Nov 12 '18 at 15:57













                    1












                    1








                    1






                    Adding to goodVibration's answer, you want to make sure the user actually sent what they say they sent.



                    contract ABCToken 
                    function sell(uint abcAmount) public
                    require(token.transferFrom(msg.sender, address(this), abcAmount));
                    uint ethAmount = myFunc(abcAmount);
                    msg.sender.transfer(ethAmount);




                    Transfer from requires the sender to first send an approve() to the token contract to set an allowance the above function can use to retrieve the user's tokens. The 2-step process is usually coordinated client-side or in another contract.



                    Hope it helps.






                    share|improve this answer














                    Adding to goodVibration's answer, you want to make sure the user actually sent what they say they sent.



                    contract ABCToken 
                    function sell(uint abcAmount) public
                    require(token.transferFrom(msg.sender, address(this), abcAmount));
                    uint ethAmount = myFunc(abcAmount);
                    msg.sender.transfer(ethAmount);




                    Transfer from requires the sender to first send an approve() to the token contract to set an allowance the above function can use to retrieve the user's tokens. The 2-step process is usually coordinated client-side or in another contract.



                    Hope it helps.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Nov 12 '18 at 15:57

























                    answered Nov 12 '18 at 14:45









                    Rob Hitchens B9lab

                    25.7k54278




                    25.7k54278







                    • 1




                      Thanks. Risk of scribbling it up freestyle. Fixed.
                      – Rob Hitchens B9lab
                      Nov 12 '18 at 15:57












                    • 1




                      Thanks. Risk of scribbling it up freestyle. Fixed.
                      – Rob Hitchens B9lab
                      Nov 12 '18 at 15:57







                    1




                    1




                    Thanks. Risk of scribbling it up freestyle. Fixed.
                    – Rob Hitchens B9lab
                    Nov 12 '18 at 15:57




                    Thanks. Risk of scribbling it up freestyle. Fixed.
                    – Rob Hitchens B9lab
                    Nov 12 '18 at 15:57

















                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2f62176%2fcan-you-send-a-token-and-get-ether-back%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







                    這個網誌中的熱門文章

                    Barbados

                    How to read a connectionString WITH PROVIDER in .NET Core?

                    Node.js Script on GitHub Pages or Amazon S3