Author

Topic: Transfer eth to many people with just one transaction (Read 150 times)

hero member
Activity: 1106
Merit: 501
Can I create such a deal?

for example:  i have 1 eth and i want to send 10 others for only 1 transaction and each one will get 0.1 eth.
I need to find this problem because it's really hard to pay bonuses, there are thousands of people waiting for rewards but the eth deal can only create one transaction and you can not make a transaction Next if it's not finished yet.

You can't transaction needs to be made in 1 address to another and spreading it in 1 go will make the mining overload, you can't have a faster transaction all is the same you simply needs to have 1 transaction at a time but what you were thinking is a good improvement it will be more likely to be a development for eth.
legendary
Activity: 2114
Merit: 1293
There is trouble abrewing
your question is wrong!
and the reason for it is because you were brainwashed by the advertisement, and this is exactly why i hate ETH and call it a shitcoin. but lets not get off topic.

ether is not a currency so you shouldn't be treating it as a currency either. when you say "transfer" or "pay" and ... these things belong to a currency. ether is a token, more like a fuel for smart contracts.
so far as i know there is no option in ethereum for sending ether to multiple recipients.

there are ways of working around it and coding it yourself in a way to create multiple transactions and pay tokens of an airdrop to all those receiving it but all the solutions i have seen just automate it but create multiple transactions in the end. google OMG airdrop and see the code.

it is basically this from stackexchange
Code:
contract Airdropper is Ownable {

    function multisend(address _tokenAddr, address[] dests, uint256[] values)
    onlyOwner
    returns (uint256) {
        uint256 i = 0;
        while (i < dests.length) {
            ERC20(_tokenAddr).transfer(dests[i], values[i]);
            i += 1;
        }
        return(i);
    }
}

for reference: https://github.com/omisego/airdrop/blob/master/README.md
sr. member
Activity: 578
Merit: 250
try to conduct an offline transaction by signing each transaction with a private key. you do not need the Internet. just later download my transaction on the website MEW and it may happen
member
Activity: 1302
Merit: 25
I think that should be available and possible too.  It is multiple transfer, that should be what it is. I don't have the exact solution but I guess it is available. Just keep searching, you will get the solution.
member
Activity: 1176
Merit: 12
Vietnamese Translator™ https://goo.gl/7inMji
Yes i just wonder this problems, but i never try this method in Ethereum network, may i'll search about it. And maybe the answers is no because you can see in many bounty campaigns they sent tokens to hunter manualy  Undecided
jr. member
Activity: 308
Merit: 7
Can I create such a deal?

for example:  i have 1 eth and i want to send 10 others for only 1 transaction and each one will get 0.1 eth.
I need to find this problem because it's really hard to pay bonuses, there are thousands of people waiting for rewards but the eth deal can only create one transaction and you can not make a transaction Next if it's not finished yet.
Jump to: