Pages:
Author

Topic: [CAPT] CAPTcoin - page 97. (Read 1059804 times)

sr. member
Activity: 378
Merit: 250
August 20, 2014, 11:36:14 PM
actually you only get a certain amount of time,i am having problems with the wallet syncing tho
what happens if you change the % to 0 for bountyfund and the developer?

Total claimed: 0.4963 • Claims: 1

Ive done about 4 capchas so far, so why is does it say ive only done 1?
legendary
Activity: 1876
Merit: 1475
August 20, 2014, 11:28:04 PM
on the input captcha screen, i have done all 3 and pressed claim my reward and nothing happens?

Do you have Javascript enabled?

Did you get an error message?

Do you see "Please wait Xs to submit" above the button?
sr. member
Activity: 378
Merit: 250
August 20, 2014, 11:25:44 PM
on the input captcha screen, i have done all 3 and pressed claim my reward and nothing happens?
full member
Activity: 140
Merit: 100
August 20, 2014, 10:49:46 PM
Alpha Tester Required!
(Read everything before applying)

I've just finished the first API service: Receive Payments API

It can be accessed here:


It works very similarly to Blockchain's API, with these basic differences:
  • It works with CAPTcoin instead of Bitcoin (of course)
  • It has an extra security for the merchant: A hash is sent with every callback. The actual key is sent only in the body of the SSL request when the address is generated. This is to make sure it's encrypt (unlike Blockchain, which asks the merchants to send a secret key via GET). So even if an attacker succeeds sniffing the traffic between the API and the merchant's server, he won't be able to simulate a callback. Learn more here (look for "salt_hash" and "security_hash").
  • Transactions are forwarded to the merchant only after 6 confirmations. This is to prevent double-spend attacks (an extra security for the API).
  • The code is 100% made from scratch.

This is the basic diagram explaining how it works:

This service is in alpha stage now

So I need testers:

Beware all generated addresses will be destroyed after this phase is over.
Do not use it on production yet.


To test, please go to: https://api.captcoin.com/
and read the full description and instructions.

Basically, you need to call this URL, either from your browser (to test) or from your server:

Code:
https://api.captcoin.com/receive?method=create&address=$receiving_address&callback=$callback_url

Where:
  • $receiving_address: Your CAPTcoin address. Payments will be forwarded there
  • $callback_url: The URL which will be called

Ideally, it'd be great if some of you can implement your own $callback_url for testing purposes.
The site contains instructions and basic examples on how to achieve that.

(I'm still working on a fork of https://github.com/blockchain/receive_payment_php_demo with a complete working example)

If you're not able to do that, you can use this Callbak URL:
Code:
https://api.captcoin.com/test.php

Whenever it is called, it will just log the event here:
https://api.captcoin.com/log.txt
so you can confirm it.

I made a simple tool to easily perform these tests:
https://api.captcoin.com/test/

Just follow these steps:
  • Go to https://api.captcoin.com/test/
  • Enter your CAPTcoin address and your callback URL, and click "Send"
  • Verify the response
  • Check the callback that will be sent, and confirm by clicking "Test the Callback URL"
  • Verify the response is as expected
  • If that works fine, go eject and send some amount between ⟳0.1 and ⟳1 to the generated address.
  • Check the callbacks (for example https://api.captcoin.com/log.txt) every 3 minutes.
  • Verify the coins are forwarded after 6 confirmations.

Please, help testing this to be 100% it's ready for production Smiley


Post any feedback.

I repeat the warning: All generated addresses will be destroyed after the alpha period is over. Do not use it on production yet.



That tool is great , it's a great step for any crypto !
sr. member
Activity: 1078
Merit: 310
August 20, 2014, 10:36:18 PM
I hope there will be a linux wallet soon.
full member
Activity: 210
Merit: 100
August 20, 2014, 10:35:08 PM
VOTE FOR CAPTCOIN

  • HitBTC / https://hitbtc.com/vote
    Details : One vote/day per IP no need to register. If you are signed-in into your HitBTC account, your vote will be multiplied by 10 (but you can cast only one vote as a member).

    Actual rank : 14th


  • Bleutrade / https://bleutrade.com/voting/CAPT
    Details : unlimited votes but it's not free... Vote fee : 0.0001 BTC / Registration required.

    Actual rank : 31st


  • SwapHole / https://www.swaphole.com/#!voting
    Details : To vote for a certain coin click on the "Vote!" button of the row of the coin. You can also push votes by sending BTC to the stated BTC address of the coin of your choice. Please notice that each 0.00010000 BTC one vote will be added to the coin you support with your BTC transaction.
    Actual rank : 43rd


  • C-CEX / https://c-cex.com/?id=vote
    Details : You can vote for adding coin by depositing BTC to it's address.
    Actual rank : 42nd



Reward will half in 3 days... Spread the word and go claim the max coin you can !
newbie
Activity: 1
Merit: 0
August 20, 2014, 09:02:53 PM
I find really hard to synchronize the Captcoin Desktop wallet to server. Cry
legendary
Activity: 1876
Merit: 1475
August 20, 2014, 08:14:33 PM
Alpha Tester Required!
(Read everything before applying)

I've just finished the first API service: Receive Payments API

It can be accessed here:


It works very similarly to Blockchain's API, with these basic differences:
  • It works with CAPTcoin instead of Bitcoin (of course)
  • It has an extra security for the merchant: A hash is sent with every callback. The actual key is sent only in the body of the SSL request when the address is generated. This is to make sure it's encrypt (unlike Blockchain, which asks the merchants to send a secret key via GET). So even if an attacker succeeds sniffing the traffic between the API and the merchant's server, he won't be able to simulate a callback. Learn more here (look for "salt_hash" and "security_hash").
  • Transactions are forwarded to the merchant only after 6 confirmations. This is to prevent double-spend attacks (an extra security for the API).
  • The code is 100% made from scratch.

This is the basic diagram explaining how it works:

This service is in alpha stage now

So I need testers:

Beware all generated addresses will be destroyed after this phase is over.
Do not use it on production yet.


To test, please go to: https://api.captcoin.com/
and read the full description and instructions.

Basically, you need to call this URL, either from your browser (to test) or from your server:

Code:
https://api.captcoin.com/receive?method=create&address=$receiving_address&callback=$callback_url

Where:
  • $receiving_address: Your CAPTcoin address. Payments will be forwarded there
  • $callback_url: The URL which will be called

Ideally, it'd be great if some of you can implement your own $callback_url for testing purposes.
The site contains instructions and basic examples on how to achieve that.

(I'm still working on a fork of https://github.com/blockchain/receive_payment_php_demo with a complete working example)

If you're not able to do that, you can use this Callbak URL:
Code:
https://api.captcoin.com/test.php

Whenever it is called, it will just log the event here:
https://api.captcoin.com/log.txt
so you can confirm it.

I made a simple tool to easily perform these tests:
https://api.captcoin.com/test/

Just follow these steps:
  • Go to https://api.captcoin.com/test/
  • Enter your CAPTcoin address and your callback URL, and click "Send"
  • Verify the response
  • Check the callback that will be sent, and confirm by clicking "Test the Callback URL"
  • Verify the response is as expected
  • If that works fine, go eject and send some amount between ⟳0.1 and ⟳1 to the generated address.
  • Check the callbacks (for example https://api.captcoin.com/log.txt) every 3 minutes.
  • Verify the coins are forwarded after 6 confirmations.

Please, help testing this to be 100% it's ready for production Smiley


Post any feedback.

I repeat the warning: All generated addresses will be destroyed after the alpha period is over. Do not use it on production yet.
full member
Activity: 210
Merit: 100
Need To Contact Me? Go To My Site!
August 20, 2014, 06:08:56 PM


 Wink
legendary
Activity: 1302
Merit: 1000
Bass Player
August 20, 2014, 05:13:38 PM
Wow, I just saw this thread. What an interesting new way to distribute coins. CLAMS is pretty cool, but here anyone can get some coins, even if you don't have many Bitcoin addresses. I love it!

I like CLAMS too  Smiley
member
Activity: 71
Merit: 10
August 20, 2014, 04:46:57 PM
Wow, I just saw this thread. What an interesting new way to distribute coins. CLAMS is pretty cool, but here anyone can get some coins, even if you don't have many Bitcoin addresses. I love it!
legendary
Activity: 1162
Merit: 1000
Allergic to false promises
August 20, 2014, 04:42:21 PM
Feels good to be part of this community. Especially with an engaged founder/dev like EquaMobi that succeeds in interesting newcomers to the cryptoscene.
In CAPTcoin I Trust  Wink
legendary
Activity: 1876
Merit: 1475
August 20, 2014, 04:30:41 PM
What the fuck is going on with this coin? I did a transaction 4 hours ago and still 0 of 4 confirmations??!!

Txid: 14856e66d9c2e5b44e37fe7c99cbba91725889e57547e1be52321a34420263a9

I see it has 8 confirmations now.
legendary
Activity: 1148
Merit: 1001
August 20, 2014, 04:22:49 PM
What the fuck is going on with this coin? I did a transaction 4 hours ago and still 0 of 4 confirmations??!!

Txid: 14856e66d9c2e5b44e37fe7c99cbba91725889e57547e1be52321a34420263a9
full member
Activity: 210
Merit: 100
Need To Contact Me? Go To My Site!
August 20, 2014, 03:04:57 PM

Remember, new services for CAPTcoin can qualify for free Ads on get.CAPTcoin.com,
which has more than 1 third of a million hits per day.


Do you still have my banner for my ad space on the captcoin site?

I am making the prices at the best rates around in an effort to raise the value.

On my website 1 CAPT is worth at least 5000 satoshi each!

(I will always accept CAPT at a rate higher than the current exchange rates.)  Wink

My ad space link is in my signature.


BTW, my site has had over 4.2 MILLION hits this month and had 3.5 MILLION hits in July. The traffic is growing fast.



Long Live CAPTcoin!
full member
Activity: 203
Merit: 100
August 20, 2014, 02:22:37 PM
Quick question:

How should the minimum amount of CAPTcoin (⟳0.00000001) be called? I'm thinking of "CAPToshi".

If there are other options, I can start a poll.

That word will be used officially on the payment processing API which is under development.


Metric System style:
DeciCAPT
CentiCAPT
MiliCAPT
.............
.............
SatoCAPT or CAPTsy.
full member
Activity: 210
Merit: 100
August 20, 2014, 12:57:12 PM
 Grin
member
Activity: 196
Merit: 10
August 20, 2014, 12:48:08 PM
Quick question:

How should the minimum amount of CAPTcoin (⟳0.00000001) be called? I'm thinking of "CAPToshi".

If there are other options, I can start a poll.

That word will be used officially on the payment processing API which is under development.


Captsize.. Or we can call it reidel Grin
legendary
Activity: 1162
Merit: 1000
Allergic to false promises
August 20, 2014, 12:31:37 PM
Quick question:

How should the minimum amount of CAPTcoin (⟳0.00000001) be called? I'm thinking of "CAPToshi".

If there are other options, I can start a poll.

That word will be used officially on the payment processing API which is under development.

something like mCAPT
Pages:
Jump to: