Pages:
Author

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

full member
Activity: 210
Merit: 100
Need To Contact Me? Go To My Site!
August 21, 2014, 10:23:11 PM
Okay now lets pick the next one Wink
And that would be by paying for voting? Hm Angry Don't like exchanges demanding that  Lips sealed
we can pwn c-cex without paying
Just saw it indeed or Swaphole as anyone can vote even without being registered.

Let's all vote on Swaphole daily!
legendary
Activity: 1876
Merit: 1475
August 21, 2014, 10:03:07 PM
CAPTcoin Ticker API

The CAPTcoin Ticker API is now available with these methods:

Price and volume of every CAPTcoin exchange, as well as the weighted average:
https://api.captcoin.com/ticker/exchanges

A list of currencies with the corresponding price of CAPTcoin.
https://api.captcoin.com/ticker/currencies

To get information corresponding to one specific currency:
/ticker/

For example:
https://api.captcoin.com/ticker/BTC
https://api.captcoin.com/ticker/USD
(22 currencies are supported)

To get the combined information:
https://api.captcoin.com/ticker/all


More information is available here:

For example, the last method currently returns this information:

Code:
{
"exchanges": {
"coin-swap": {
"price": "0.00002400",
"volume": "1.18545110"
},
"bittrex": {
"price": "0.00002536",
"volume": "0.28916834"
},
"atomic-trade": {
"price": "0.00002500",
"volume": "0.04265044"
},
"cryptoine": {
"price": "0.00002200",
"volume": "0.00276601"
},
"average": "0.00002428"
},
"currencies": {
"BTC": "0.00002428",
"AUD": "0.0136",
"BRL": "0.0265",
"CAD": "0.0140",
"CHF": "0.0096",
"CNY": "0.0773",
"EUR": "0.0096",
"GBP": "0.0079",
"HKD": "0.0595",
"IDR": "144.6471",
"ILS": "0.0455",
"MXN": "0.1629",
"NOK": "0.0840",
"NZD": "0.0156",
"PLN": "0.0400",
"RON": "0.0426",
"RUB": "0.4901",
"SEK": "0.0917",
"SGD": "0.0150",
"TRY": "0.0276",
"USD": "0.0126",
"ZAR": "0.1378"
},
"created": "2014-08-21T22:20:01+00:00"
}
legendary
Activity: 1876
Merit: 1475
August 21, 2014, 10:01:00 PM
rather than getting CAPT on many exchangers out there,
maybe we should think on how or what to do to get this coin used for transactions
I'm willing to offer something for payment in CAPT, but I have no idea what service I should offer or things to sell
we should try brainstorming some options & possibilities, so other people can start working on those ideas

and this post would make me Jr. Member  Grin

This is really a good idea. If you can get it done, it will surely help the community. Let's help Thirdspace with his idea, I have none right now but will post here once I have one...
Captcoin auctioning site?

That would be great Smiley
hero member
Activity: 672
Merit: 500
August 21, 2014, 09:56:03 PM
rather than getting CAPT on many exchangers out there,
maybe we should think on how or what to do to get this coin used for transactions
I'm willing to offer something for payment in CAPT, but I have no idea what service I should offer or things to sell
we should try brainstorming some options & possibilities, so other people can start working on those ideas

and this post would make me Jr. Member  Grin

This is really a good idea. If you can get it done, it will surely help the community. Let's help Thirdspace with his idea, I have none right now but will post here once I have one...
Captcoin auctioning site?
sr. member
Activity: 420
Merit: 250
Proof-of-Asset Protocol
August 21, 2014, 09:47:29 PM
rather than getting CAPT on many exchangers out there,
maybe we should think on how or what to do to get this coin used for transactions
I'm willing to offer something for payment in CAPT, but I have no idea what service I should offer or things to sell
we should try brainstorming some options & possibilities, so other people can start working on those ideas

and this post would make me Jr. Member  Grin

This is really a good idea. If you can get it done, it will surely help the community. Let's help Thirdspace with his idea, I have none right now but will post here once I have one...
hero member
Activity: 1232
Merit: 738
Mixing reinvented for your privacy | chipmixer.com
August 21, 2014, 06:03:35 PM
rather than getting CAPT on many exchangers out there,
maybe we should think on how or what to do to get this coin used for transactions
I'm willing to offer something for payment in CAPT, but I have no idea what service I should offer or things to sell
we should try brainstorming some options & possibilities, so other people can start working on those ideas

and this post would make me Jr. Member  Grin
legendary
Activity: 1876
Merit: 1475
August 21, 2014, 06:02:13 PM
Don't forget about this:

Further testing is required.

Anybody can do it Smiley
No dev. skills required.

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.

legendary
Activity: 1162
Merit: 1000
Allergic to false promises
August 21, 2014, 04:48:27 PM


this is CAPT on C-CEX

Number one has 221 votes.
what do u think?
lets do this.
https://c-cex.com/?id=vote&vc=1
Shouldn't be too hard to get to #1 I guess. So I'll saddle up my horse and drive into the wild cryptowest once more Tongue
i thinks its one vote/person only
so its up to the community to show how strong we are.
They got my vote at C-Cex now and I think voting at Swap-Hole is also restricted to one vote per IP address.
sr. member
Activity: 1063
Merit: 253
Sovryn - Brings DeFi to Bitcoin
August 21, 2014, 04:40:55 PM


this is CAPT on C-CEX

Number one has 221 votes.
what do u think?
lets do this.
https://c-cex.com/?id=vote&vc=1
Shouldn't be too hard to get to #1 I guess. So I'll saddle up my horse and drive into the wild cryptowest once more Tongue
i thinks its one vote/person only
so its up to the community to show how strong we are.


legendary
Activity: 1162
Merit: 1000
Allergic to false promises
August 21, 2014, 04:34:23 PM


this is CAPT on C-CEX

Number one has 221 votes.
what do u think?
lets do this.
https://c-cex.com/?id=vote&vc=1
Shouldn't be too hard to get to #1 I guess. So I'll saddle up my horse and drive into the wild cryptowest once more Tongue
sr. member
Activity: 1063
Merit: 253
Sovryn - Brings DeFi to Bitcoin
August 21, 2014, 04:28:10 PM


this is CAPT on C-CEX

Number one has 221 votes.
what do u think?
lets do this.
https://c-cex.com/?id=vote&vc=1
newbie
Activity: 30
Merit: 0
August 21, 2014, 04:19:51 PM
What a really awesome distribution method!

So you fill in 3 captchas and get your stake. I understand there is no limit to how many times you can do this (seeing as how you must invest your time), but I am wondering  if there is any sort of waiting period between submissions? Approximately how long does the whole process take?
You have to wait 20 seconds to submit the captchas.
member
Activity: 111
Merit: 10
August 21, 2014, 04:13:59 PM
What a really awesome distribution method!

So you fill in 3 captchas and get your stake. I understand there is no limit to how many times you can do this (seeing as how you must invest your time), but I am wondering  if there is any sort of waiting period between submissions? Approximately how long does the whole process take?
legendary
Activity: 1162
Merit: 1000
Allergic to false promises
August 21, 2014, 04:02:31 PM
Okay now lets pick the next one Wink
And that would be by paying for voting? Hm Angry Don't like exchanges demanding that  Lips sealed
we can pwn c-cex without paying
Just saw it indeed or Swaphole as anyone can vote even without being registered.
sr. member
Activity: 1063
Merit: 253
Sovryn - Brings DeFi to Bitcoin
August 21, 2014, 04:00:08 PM
Okay now lets pick the next one Wink
And that would be by paying for voting? Hm Angry Don't like exchanges demanding that  Lips sealed
we can pwn c-cex without paying
full member
Activity: 210
Merit: 100
August 21, 2014, 03:57:02 PM
Number one on cryptofolio !!! In a day... You're amazing people !
legendary
Activity: 1162
Merit: 1000
Allergic to false promises
August 21, 2014, 03:54:14 PM
Okay now lets pick the next one Wink
And that would be by paying for voting? Hm Angry Don't like exchanges demanding that  Lips sealed
sr. member
Activity: 1063
Merit: 253
Sovryn - Brings DeFi to Bitcoin
August 21, 2014, 03:50:34 PM
VOTE FOR CAPTCOIN
We've lost 1 rank on HitBTC, please don't forget to daily vote Smiley

  • 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 : 15th


  • 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 : 35th


  • Cryptofolio / http://cryptofolio.info/welcome/vote
    Details : Accept free vote and paid vote (0.0005BTC/vote)
    Actual rank : 12th





Okay now lets pick the next one Wink
legendary
Activity: 1162
Merit: 1000
Allergic to false promises
August 21, 2014, 03:43:34 PM
sr. member
Activity: 1063
Merit: 253
Sovryn - Brings DeFi to Bitcoin
Pages:
Jump to: