Can you send a token and get ether back?
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
add a comment |
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
add a comment |
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
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
solidity tokens
edited Nov 12 '18 at 14:01
Paul Berg
1,477423
1,477423
asked Nov 12 '18 at 11:50
chrisfuture
61
61
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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...
add a comment |
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.
1
Thanks. Risk of scribbling it up freestyle. Fixed.
– Rob Hitchens B9lab
Nov 12 '18 at 15:57
add a comment |
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
);
);
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%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
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...
add a comment |
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...
add a comment |
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...
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...
answered Nov 12 '18 at 12:20
goodvibration
2,835721
2,835721
add a comment |
add a comment |
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.
1
Thanks. Risk of scribbling it up freestyle. Fixed.
– Rob Hitchens B9lab
Nov 12 '18 at 15:57
add a comment |
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.
1
Thanks. Risk of scribbling it up freestyle. Fixed.
– Rob Hitchens B9lab
Nov 12 '18 at 15:57
add a comment |
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.
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.
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
add a comment |
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
add a comment |
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.
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%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
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