Possible to auto-send one btc transaction every x seconds to same btc address?

0

is there a wallet/app out there that would do the following, or would it require bespoke script development?

  • Automatically send a btc transaction to a btc address at fixed time intervals eg every second
  • Sending address would always be the same, as would receiving address, ie always from address a to address b
  • Amount would potentially be varied

Thanks for any help.

JBwell

Posted 2015-05-10T19:52:33.250

Reputation: 43

1At first glance, this sounds like potentially poor practice (address reuse, spamming of the blockchain, etc.). Are you at liberty to describe the underlying goal?Christopher Gurnee 2015-05-10T21:50:49.943

1This sounds like something you could do with Bitcoin's API and a few lines of Python, but I'm not sure what the point would be.Nick ODell 2015-05-10T23:52:12.700

Thanks both. Was thinking of a skill based game where the person who sends most transactions to address A by block X wins. There would be a min amount threshold, so would not be spam.JBwell 2015-05-11T07:19:58.870

2Sounds like you are looking for micropayment channels or Strawpay or AmikoPay or Lightning Network. Using the blockchain like you describe doesn't make sense and won't scale to even 1 player playing your game.Jannes 2015-05-11T09:12:16.570

Thanks. Do you mean that it would not be worth it for a player to send multiple low value transactions to the blockchain because of the transaction fees eating up a good percent of the total transaction amount? Or something else?JBwell 2015-05-11T09:53:24.433

@JBwell both. I'd understand sending it every X BTC but not for time.Wizard Of Ozzie 2015-05-13T10:01:57.173

@Wizard Of Ozzie the idea would be players of the game send BTC transactions to a temporarily fixed BTC address, with the winner being the racer that has been sent most transactions by a pre-defined end block. I was interested to know if it would be easy to 'game' and auto-send BTC at set intervals...JBwell 2015-05-13T21:30:35.463

No answers