Bitcoin Forum
June 30, 2024, 05:21:14 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 [135] 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 ... 190 »
2681  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 13,845 unique addresses in 27 days on: August 22, 2014, 02:03:07 AM
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/<UPER-CASE 3-CHAR CODE>

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"
}
2682  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 13,845 unique addresses in 27 days on: August 22, 2014, 02:01:00 AM
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
2683  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,839 unique addresses in 26 days on: August 21, 2014, 10: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.

2684  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,839 unique addresses in 26 days on: August 21, 2014, 02:42:34 PM
New payout:

http://explore.captcoin.com/tx/c3c75041599fd9774fce7be35f661ab6ba682d4b832adad7167ce7a7133abbeb
http://explore.captcoin.com/tx/411e2e4707f39b9af45a1c502b6b3c2020cd90e58d65be8acb449489c0aee988
http://explore.captcoin.com/tx/9a78fafa83d70a0d9071a21c8260796ee96647e4f7b454aaad5da3ec39b148cb
http://explore.captcoin.com/tx/1defc237457d584f697df5cc0b20f586bf8a8b83596d2da5c86de589d98a1ffb
http://explore.captcoin.com/tx/c3f564b9a0f22fc32e065d1e35809b9abef56671914752eb4d2fd3049a702ce0
http://explore.captcoin.com/tx/331dad4253adb6584d34346af7376cc504d402fd5dcc8ab309f6207c44b7c56a
http://explore.captcoin.com/tx/1cdfca6d3ed0825a63c7c4a8fec461ee10ffedf9c85dba2e48fc8918909e81e5
http://explore.captcoin.com/tx/626e90a2a67434968cd3cf56c5d383f841e5ee3f95618d4569e059d855fc657e
http://explore.captcoin.com/tx/9c45d988ae909f157c1b7773f051a027a60b363f5889611bcb1a6e6e1977437e
http://explore.captcoin.com/tx/880951f23e5c32e976024d968a9244d2ab6923cb81a00a2e7f9018c7a19c1795
http://explore.captcoin.com/tx/24893d4bf3749baf6d13f659c05b14e0993927bfb3ec6f78909bc481befc84f2
http://explore.captcoin.com/tx/7ce63e0280c047af601094a8b94d1502406489ad4fbbb07ac217a6f923fa420c
http://explore.captcoin.com/tx/eb4c357f96270177ed4d8b53e0cbce71d50e6a677b4904bc6863cf6ed76e827a
http://explore.captcoin.com/tx/a6468bf19675486bc6926bd60009b3881d1d9a04363d320b857c41bc9002fa77

http://get.captcoin.com/addresses.html
http://get.captcoin.com/tx.html
2685  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,839 unique addresses in 26 days on: August 21, 2014, 12:17:25 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 !

I don't know api or something like that, just newbie programmer. So, I can't help you.. If i can about that, I want to be a tester..  Smiley

If you're not a developer, you can help by going to:
https://api.captcoin.com/test/

And entering your address and this callback URL:
https://api.captcoin.com/test.php

As posted.


I do it. But show like called url, response, user instructions etc. What should I do?

You can do this:
  • 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.
2686  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,839 unique addresses in 26 days on: August 21, 2014, 12:00:38 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 !

I don't know api or something like that, just newbie programmer. So, I can't help you.. If i can about that, I want to be a tester..  Smiley

If you're not a developer, you can help by going to:
https://api.captcoin.com/test/

And entering your address and this callback URL:
https://api.captcoin.com/test.php

As posted.
2687  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,839 unique addresses in 26 days on: August 21, 2014, 03:56:43 AM
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?

Most probably, some captcha was wrong the other 3 times. You get a message either confirming your claim or showing the error every time.

If you set the donation to 0, then you won't support the development. But of course you can do so.
2688  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,839 unique addresses in 26 days on: August 21, 2014, 03:28:04 AM
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?
2689  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,839 unique addresses in 26 days on: August 21, 2014, 03:26:32 AM
Payouts are up-to-date:

http://explore.captcoin.com/tx/4ed694874db03b881ce73924b50704dad191f3a934860b538a007d3b3b7c78dd
http://explore.captcoin.com/tx/b87f029f8c24e1665afb3cc1fea5df7dee1dd70e7bf25e93a677e292987654a7
http://explore.captcoin.com/tx/d1fcf724da2253f6be7b9bfa9715b649c7ddafa05644cb33e51661c27f1a691e
http://explore.captcoin.com/tx/21e4ebe7ccea2d456c9e9ed74b35154da2f1571b306e928beef8d579115174a9
http://explore.captcoin.com/tx/bcc4a64b17b9fbc56106b7d27d87d68d95b91ba08b4b63ede8ce319346d7c808
http://explore.captcoin.com/tx/cdc9e224ed093b063061eb7b22e9abeff214b93235e18a1aa1ea3de9537ccd44
http://explore.captcoin.com/tx/3a7765576ff4c381f17f912332867599e98eaf47a429a459a28266c43fce582b
http://explore.captcoin.com/tx/9d6d157a1cca037036c657128fa80da2e7e9854a4a651d7f2a393a8faf2fe06b
http://explore.captcoin.com/tx/c2bef9f89cac0c909d85288ff1b5603cbbf0be25cb619712914d9366c8117024
http://explore.captcoin.com/tx/db8760792a141b1c124d82679da5f194c0f07f072b7b1177838fc4954505a2ff

http://get.captcoin.com/addresses.html
http://get.captcoin.com/tx.html
2690  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,839 unique addresses in 26 days on: August 21, 2014, 12:14:33 AM
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.
2691  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,839 unique addresses in 26 days on: August 20, 2014, 08: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.
2692  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,063 unique addresses in 25 days on: August 20, 2014, 03:34:44 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.
2693  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,063 unique addresses in 25 days on: August 20, 2014, 02:56:34 PM
CAPTcoin is officially the most popular coin on MultiDice:






1.000.000 Bets!





Congratulations to Player_1102 for executing bet ID 1.000.000

1000 CAPT was credited to your account





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.


2694  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,063 unique addresses in 25 days on: August 20, 2014, 02:52:32 PM
New payout:

http://explore.captcoin.com/tx/66d97d8f4c10403f6ea90026d8cdbf19c95285aa26f8e2a5c34ddc5d7ad83e14
http://explore.captcoin.com/tx/9af00784d8410e6077290082891a03b24f78aa35f0edccf079819f24a5f49729
http://explore.captcoin.com/tx/d83b650e18fa9beec01a8337022f085677fe3886e3e1c262843d5e4a218bddb0
http://explore.captcoin.com/tx/4e62e71429c300b4ed6bc51e103fc2449345e221471b5e668d55511f40c8ac16
http://explore.captcoin.com/tx/edbca7e8e0bbb8c7c9b3c2ceeaec83efd5eac8b9ecb68bcf350ca79fa8e2337c
http://explore.captcoin.com/tx/6b122e081080d35441c515e6bbf125fc792062777b09b8533ce3c00bb0da5ee2
http://explore.captcoin.com/tx/63a842354791fbd774a55c5e5a373885a391107010b369504e106086d5b90aa5
http://explore.captcoin.com/tx/d3a9512460bc523350a4d64b345aea38e7a7e330902539834da778dda183a57a
http://explore.captcoin.com/tx/fd8037066087c047072f0b4de9d2ac907aa5e6bf5a36559dddf685cb69dbd864
http://explore.captcoin.com/tx/d3bb3b40590b61746296c93dba9ddb597b6853b57d5564e95fb7173b5063ac5c
http://explore.captcoin.com/tx/8de01e9c8ecf69b6605929d5d56510c3e26d2b01f5cbcedf3aad8805c5d5ef86
http://explore.captcoin.com/tx/04fcd00b0125dea45ff947d9c3326abfb30978800a5617cb2f39ca3da18df8f3
http://explore.captcoin.com/tx/50c9659676cb4ed64b69ebd0dd8fe1453095bac2801c11f405b046e11d2322c1
http://explore.captcoin.com/tx/7a59a9b92b4c99cf83f2784041a330fe3dbade17be85aedae618ecfcd9f51db8
http://explore.captcoin.com/tx/d6b81f567fc5e5c66632f64cba46c8f0aef024a9996c83df29f377ddfcb8b6cc

http://get.captcoin.com/addresses.html
http://get.captcoin.com/tx.html
2695  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,063 unique addresses in 25 days on: August 20, 2014, 01:06:49 PM
How do you stake your captcoin?

Basically, unlock your wallet and keep it online.
Minimum age is 8 hours.

https://forum.captcoin.com/index.php/topic,32.0.html
2696  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 11,305 unique addresses in 24 days on: August 20, 2014, 12:11:05 PM
He is skilled at Android Wallets for POW coins. This is a different beast... a 'POS' staking Android wallet?
My guess is he could roll out a non staking version easily... but not a staking one so easily... but who knows  Smiley
A PoS staking mobile wallet is already made by at least 2 other altcoins that I know of. Just to let you know.

An android wallet staking or not is a good step towards popularizing CAPT among mobile and smartphone users.

I think the Dev should roll out an android wallet even if not staking.

I think the dev is already developing an android app for captcoin.

https://bitcointalk.org/index.php?topic=683776.msg8285732#msg8285732
2697  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 12,063 unique addresses in 25 days on: August 20, 2014, 03:16:32 AM
Payouts are up-to-date:

http://explore.captcoin.com/tx/5e3d658a43b5f0c7ed6b2f31a5eb4b7c24bb27ac00546ccbd3cfbfa4bee12ba9
http://explore.captcoin.com/tx/000e66b23b8e74a1b6631c9add56a54a4bb049d7374e93f63ec37be309c09d0d
http://explore.captcoin.com/tx/cbd17b850744679e5dd438eca98fdbf15346019a9e34ef7ac44cf01c18d9b45a
http://explore.captcoin.com/tx/c15936c461bd67e74258ba48f238563e0a84bcb773ee2dda2b2c79272fb955eb
http://explore.captcoin.com/tx/7b9699b20daa5c475705708c2dcbddbd75b7954da3ce4a4ce4c9e1a0d93c8b18
http://explore.captcoin.com/tx/12027d4f49010da063d93aece487e755493ba2852a477277967b0cd776863cf5
http://explore.captcoin.com/tx/865e2971e4d3ebab5b15be1e5efcbe71f8304537989db72fbef0e63469341645
http://explore.captcoin.com/tx/99ebc08e9133f834adea80c085ab9c5fb742fe2d1f1cd2a02dbb8b6c474238f7

http://get.captcoin.com/addresses.html
http://get.captcoin.com/tx.html
2698  Economy / Gambling / Re: # MultiDice.me # Multi Coin Dice Game on: August 19, 2014, 08:35:17 PM
I see CAPTcoin became the most popular coin on MultiDice.

Happy to read that Cheesy

That's great for both MultiDice and CAPTcoin.
2699  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 11,305 unique addresses in 24 days on: August 19, 2014, 04:08:05 PM
how come i have not received claimed coins today

The payout was sent a little more than 1 hour ago. What's your address?
2700  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ⟳ [CAPT] CAPTcoin - The best distributed PoS: 11,305 unique addresses in 24 days on: August 19, 2014, 03:38:57 PM
I'm finally a Sr. Member! Cheesy

So I could test the design for Sr./Hero members and improved it.
Feel free to use or edit it to promote your CAPTcoin referral link

I updated the OP.

Quote
Code:
[table][tr][td]
[size=18pt][b][url=https://bitcointalk.org/index.php?topic=683776.0][color=#FF7D00]  ⟳ CAPTcoin [/color][/url][/b][/size]
[url=https://bitcointalk.org/index.php?topic=683776.0][size=7pt]   The crypto-currency for everyone[/size][/url]
[/td][td]
[color=#FF7D00]▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄[/color]
[b]  [url=http://YourRef.CAPTcoin.com]Get your free share [size=7pt](5% extra if you use this ref. link)[/size][/url][/b]
[color=#FF7D00]▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄[/color]
[/td][/tr][/table]
Pages: « 1 ... 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 [135] 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 ... 190 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!