Bitcoin Forum
May 04, 2024, 05:05:00 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 [26] 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 »
  Print  
Author Topic: Inputs.io | Instant Payments, Offchain API, Secure Wallet, 235k+ BTC transferred  (Read 158084 times)
simple-dice
Newbie
*
Offline Offline

Activity: 59
Merit: 0


View Profile
September 28, 2013, 08:11:40 AM
 #501

https://github.com/NM-Development/inputs.io-PHP-Wrapper/blob/master/Inputs.php

Wrote a basic PHP Wrapper for inputs.io's API.

The most basic functions like getting an account's balance, getting an account's transactions, sending a transaction, and getting a transaction's details.

I love your site, TradeFortress.  You should add more API functionality. Smiley

Also, could you look into allowing the API to send to an e-mail and address?

It's kind of silly IMO that you allow people to send to addresses but don't allow payments to be sent via inputs-inputs with the API...

Just change address= to recipient= and do a simple regex and then decide the process of sending.

Thanks and enjoy!
1714842300
Hero Member
*
Offline Offline

Posts: 1714842300

View Profile Personal Message (Offline)

Ignore
1714842300
Reply with quote  #2

1714842300
Report to moderator
1714842300
Hero Member
*
Offline Offline

Posts: 1714842300

View Profile Personal Message (Offline)

Ignore
1714842300
Reply with quote  #2

1714842300
Report to moderator
"Governments are good at cutting off the heads of a centrally controlled networks like Napster, but pure P2P networks like Gnutella and Tor seem to be holding their own." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714842300
Hero Member
*
Offline Offline

Posts: 1714842300

View Profile Personal Message (Offline)

Ignore
1714842300
Reply with quote  #2

1714842300
Report to moderator
1714842300
Hero Member
*
Offline Offline

Posts: 1714842300

View Profile Personal Message (Offline)

Ignore
1714842300
Reply with quote  #2

1714842300
Report to moderator
1714842300
Hero Member
*
Offline Offline

Posts: 1714842300

View Profile Personal Message (Offline)

Ignore
1714842300
Reply with quote  #2

1714842300
Report to moderator
🏰 TradeFortress 🏰 (OP)
Bitcoin Veteran
VIP
Legendary
*
Offline Offline

Activity: 1316
Merit: 1043

👻


View Profile
September 29, 2013, 12:36:35 AM
Last edit: September 29, 2013, 12:55:02 AM by TradeFortress
 #502

It's kind of silly IMO that you allow people to send to addresses but don't allow payments to be sent via inputs-inputs with the API...

Just change address= to recipient= and do a simple regex and then decide the process of sending.

Thanks and enjoy!
Thanks! Address already supports email, Bitcoin addresses and usernames.
simple-dice
Newbie
*
Offline Offline

Activity: 59
Merit: 0


View Profile
September 29, 2013, 01:55:26 AM
 #503

It's kind of silly IMO that you allow people to send to addresses but don't allow payments to be sent via inputs-inputs with the API...

Just change address= to recipient= and do a simple regex and then decide the process of sending.

Thanks and enjoy!
Thanks! Address already supports email, Bitcoin addresses and usernames.

Huh.. Odd.  It didn't send to an e-mail when I set address=email on the API.

I'll double-check my code.
🏰 TradeFortress 🏰 (OP)
Bitcoin Veteran
VIP
Legendary
*
Offline Offline

Activity: 1316
Merit: 1043

👻


View Profile
September 29, 2013, 02:15:47 AM
 #504

It's kind of silly IMO that you allow people to send to addresses but don't allow payments to be sent via inputs-inputs with the API...

Just change address= to recipient= and do a simple regex and then decide the process of sending.

Thanks and enjoy!
Thanks! Address already supports email, Bitcoin addresses and usernames.

Huh.. Odd.  It didn't send to an e-mail when I set address=email on the API.

I'll double-check my code.
Make sure you've encoded the @ sign.
Mooshire
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
September 29, 2013, 05:09:13 PM
 #505

I've got a suggestion for you TF: Vanity addresses
You can take advantage of piecewise generation to keep the shared wallet safe but still let users have vanity addresses.
For example:
1: The site provides the user with a user specific public key.
2: The user uses vanitygen or some other service to get a part private key for the address they want
3: The user imports the part private key into inputs.io, which combines the user-specific private key with the one the user provided to create the address.

Using this method, inputs.io is still the only handler of the site's private keys, but users can still use vanity addresses.
Since this might take some time to make and you'd probably only implement it if other people wanted it as well, i'd appreciate it if anyone reading this that thinks this is a good idea to state that here so TF knows that people want this. I believe I saw requests for vanity addresses before, but not piecewise support.
TF: Do you think this is a good idea?

Mooshire
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
September 29, 2013, 05:17:23 PM
 #506

Due to the way inputs.io work, if the user has the private key, he can fool it into crediting his coins, spend them, then transfer them back without using the site, i.e. spending them twice.
The vanity gen would have to be server side.
I don't think you understand piecewise generation. With piecewise generation, the user uploads a PART private key after generating an address using a public key given by the site. The site uses it's PART private key and combines it with the one the user gave it to create an actual bitcoin private key. The site is the only one with the full private key, so your argument is invalid  Cool

EDIT: Just for clarity, the vanity gen would NOT run on the server, this would take much too many resources. The users would be supplying part private keys they made themselves or recieved from vanity address services.

Mooshire
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
September 30, 2013, 04:46:23 AM
 #507

I've got a suggestion for you TF: Vanity addresses
You can take advantage of piecewise generation to keep the shared wallet safe but still let users have vanity addresses.
For example:
1: The site provides the user with a user specific public key.
2: The user uses vanitygen or some other service to get a part private key for the address they want
3: The user imports the part private key into inputs.io, which combines the user-specific private key with the one the user provided to create the address.

Using this method, inputs.io is still the only handler of the site's private keys, but users can still use vanity addresses.
Since this might take some time to make and you'd probably only implement it if other people wanted it as well, i'd appreciate it if anyone reading this that thinks this is a good idea to state that here so TF knows that people want this. I believe I saw requests for vanity addresses before, but not piecewise support.
TF: Do you think this is a good idea?
Bumping this idea to last page

🏰 TradeFortress 🏰 (OP)
Bitcoin Veteran
VIP
Legendary
*
Offline Offline

Activity: 1316
Merit: 1043

👻


View Profile
October 01, 2013, 12:20:29 AM
 #508

It seems like the feature would have a very limited audience and would introduce significant complexity to the backend system. It's practical to allow users to generate vanity addresses up to three characters (case sensitive) or maybe 4 characters case insensitive, with the processing done on server. Would there be any interest in these vanity addresses?
Mooshire
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
October 01, 2013, 01:27:06 AM
 #509

It seems like the feature would have a very limited audience and would introduce significant complexity to the backend system. It's practical to allow users to generate vanity addresses up to three characters (case sensitive) or maybe 4 characters case insensitive, with the processing done on server. Would there be any interest in these vanity addresses?
I would be interested.

Injust
Legendary
*
Offline Offline

Activity: 1008
Merit: 1000



View Profile
October 01, 2013, 02:04:57 AM
 #510

It seems like the feature would have a very limited audience and would introduce significant complexity to the backend system. It's practical to allow users to generate vanity addresses up to three characters (case sensitive) or maybe 4 characters case insensitive, with the processing done on server. Would there be any interest in these vanity addresses?
I would be interested.

There are already other free vamity address generators online, such as https://bitcoinvanity.appspot.com/.
Mooshire
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
October 01, 2013, 02:27:43 AM
 #511

It seems like the feature would have a very limited audience and would introduce significant complexity to the backend system. It's practical to allow users to generate vanity addresses up to three characters (case sensitive) or maybe 4 characters case insensitive, with the processing done on server. Would there be any interest in these vanity addresses?
I would be interested.

There are already other free vamity address generators online, such as https://bitcoinvanity.appspot.com/.
You don't understand, don't post things in topics when you don't know what is going on.
inputs.io is a shared wallet, so if I imported a vanity address, then coins that weren't mine would get sent to that address and I could take money that didn't belong to me.

Injust
Legendary
*
Offline Offline

Activity: 1008
Merit: 1000



View Profile
October 01, 2013, 02:40:03 AM
 #512

It seems like the feature would have a very limited audience and would introduce significant complexity to the backend system. It's practical to allow users to generate vanity addresses up to three characters (case sensitive) or maybe 4 characters case insensitive, with the processing done on server. Would there be any interest in these vanity addresses?
I would be interested.

There are already other free vamity address generators online, such as https://bitcoinvanity.appspot.com/.
You don't understand, don't post things in topics when you don't know what is going on.
inputs.io is a shared wallet, so if I imported a vanity address, then coins that weren't mine would get sent to that address and I could take money that didn't belong to me.

Do not comprehend Tongue
marketorder
Sr. Member
****
Offline Offline

Activity: 375
Merit: 250


View Profile
October 01, 2013, 04:06:53 AM
 #513

I sent you an email about the shopping cart app using  your API. Could you please respond to the app limitations you mentioned in the email I'd greatly appreciate it. My programmer asked about it
marketorder
Sr. Member
****
Offline Offline

Activity: 375
Merit: 250


View Profile
October 01, 2013, 03:35:28 PM
Last edit: October 01, 2013, 03:49:40 PM by marketorder
 #514

Not at this time. I have developers testing the plugin. There's going to be a fee to download the app (extension) which will help fund future cost and upgrades. It's going to be compatible with WooCommerce, I will add additional shopping carts after I raised enough funds to cover the cost of further development.

The fee to download the plugin will be minimal compared to other premium extensions and plugins available for WooCommerce. We are testing the plugin now and should be available for download by this weekend or early next week. 



As a developer:
Are there plans for a test version? Ideally connected to testnet.
marketorder
Sr. Member
****
Offline Offline

Activity: 375
Merit: 250


View Profile
October 01, 2013, 04:52:37 PM
 #515

TradeFortress will be able to test the application once completed if he chooses too. I'm paying programmers to test the application to make sure it works properly before I release it. It's a premium plugin  Inputs.io is not affiliated with me at this time. Just like anyone else out there can program an application or program using the API documentation that's why it's there to further the use and growth of the online wallet.

I don't want this to be a discussion about my plugin I was speaking to him privately about it but I was unable to get a response to a question my programmer asked.
'.

Not at this time.
This was addressed to inputs.io/TradeFortress. Wink
🏰 TradeFortress 🏰 (OP)
Bitcoin Veteran
VIP
Legendary
*
Offline Offline

Activity: 1316
Merit: 1043

👻


View Profile
October 02, 2013, 12:12:27 PM
 #516

I don't want this to be a discussion about my plugin I was speaking to him privately about it but I was unable to get a response to a question my programmer asked.
'.
For reference this has been responded to.
Mooshire
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
October 02, 2013, 05:56:37 PM
Last edit: October 02, 2013, 11:02:41 PM by Mooshire
 #517

I just sent in excess of 2.5 BTC with inputs and it sent it with 0 FEES

https://blockchain.info/tx/0d6f15e50201f8ffb02fc1872301948b82cf1c74bce7e6804e4d013f82de0d6e

Might want to not let it send without fees.

EDIT: Has confirmations now.

-----BEGIN BITCOIN SIGNED MESSAGE-----
Signed by Inputs.io on 02/10/13 05:56:09
The transaction 0d6f15e50201f8ffb02fc1872301948b82cf1c74bce7e6804e4d013f82de0d6e was sent by the owner of the address 17n1yi6T35snj6AKazc3VtTgmBJKukKFN. Messages signed from that address are representative of the actual sender of this transaction. This receipt was signed with one of the inputs of the transaction for verification.
-----BEGIN SIGNATURE-----
1HZpz62QnJCVv91yRzbUSBHVGxyy9GD6Me
H6x4BKD592YNKEC+3nqBVcN3buAiGvDdIo/y8BDge0wf8TS5EaKZCd3nKCqX1A+3I3cXTEoERWqYK2EbQ2eClo4=
-----END BITCOIN SIGNED MESSAGE-----

🏰 TradeFortress 🏰 (OP)
Bitcoin Veteran
VIP
Legendary
*
Offline Offline

Activity: 1316
Merit: 1043

👻


View Profile
October 07, 2013, 06:50:00 AM
Last edit: October 07, 2013, 08:55:16 AM by TradeFortress
 #518

You can now generate addresses with a custom prefix, commonly referred to as "vanity addresses". Think of license plates that spell out a world, prefixes are a similar concept - such as 1BobLKNvSz7333peq3ymJzLmaV6jg7gPnt.

Bitcoin addresses have certain limitations - such as lowercase L (l), uppercase i (I) and uppercase o (O) cannot be used. In addition, you can generate vanity addresses up to 4 characters long with Inputs (eg 1Love). Please note that it may take up to one minute to generate a vanity address.
Mooshire
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250



View Profile
October 07, 2013, 12:00:58 PM
 #519

You can now generate addresses with a custom prefix, commonly referred to as "vanity addresses". Think of license plates that spell out a world, prefixes are a similar concept - such as 1BobLKNvSz7333peq3ymJzLmaV6jg7gPnt.

Bitcoin addresses have certain limitations - such as lowercase L (l), uppercase i (I) and uppercase o (O) cannot be used. In addition, you can generate vanity addresses up to 4 characters long with Inputs (eg 1Love). Please note that it may take up to one minute to generate a vanity address.
Thanks, good to see this.

Boelens
Hero Member
*****
Offline Offline

Activity: 672
Merit: 500



View Profile
October 07, 2013, 12:35:09 PM
 #520

You can now generate addresses with a custom prefix, commonly referred to as "vanity addresses". Think of license plates that spell out a world, prefixes are a similar concept - such as 1BobLKNvSz7333peq3ymJzLmaV6jg7gPnt.

Bitcoin addresses have certain limitations - such as lowercase L (l), uppercase i (I) and uppercase o (O) cannot be used. In addition, you can generate vanity addresses up to 4 characters long with Inputs (eg 1Love). Please note that it may take up to one minute to generate a vanity address.

Why not allow people to pay for longer addresses than 4 characters long? Would earn more money, and help people to easily get and implement vanity addresses.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 [26] 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!