Bitcoin Forum
May 07, 2024, 03:47:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 ... 190 »
81  Local / Кодеры / Re: Децентрализованная биткойн биржа on: October 07, 2018, 07:28:37 AM
все равно нужен кто-то кто будет менять токен БТС с этой биржи 1 к 1 на внешний биткоин

так работают ВСЕ биржи
82  Local / Идеи / Re: Честные выборы - на базе криптовалюты on: September 17, 2018, 06:33:10 AM
Просьба тут критиковать и предлагать - с целью создать рабочую систему криптовыборов, так чтобы можно было её предложить для внедрения в ЦИК или президенту РФ

Идея изначально провальная. Власть не заинтересована в диалоге, её язык разговора - язык силы, именно язык силы власть и понимает. Посмотрите, как постоянно разгоняют всякие митинги и прочее.

Поэтому, чтобы вести диалог с властью надо говорить на языке силы, а не уникальных предложений для неё.

Поэтому в этом плане лучше сделать блокчейн с поступками чиновников, например, этот принял такой закон, а этот не построил дорогу, когда на нее были выделены деньги.



кроме власти есть еще обычный бизнес и всякие ТСЖ, СНТ и т.д.
83  Local / Бayнти и aиpдpoпы / Re: KYC для бayнтиcтoв oпacнo для жизни! on: September 13, 2018, 07:05:25 AM
не знаю за что пост удалили - повторю

голосовал за КИС - при условии что активы с кошелька можно послать только другому удостовернному человеку - как это сделано в Erachain.
В таком случае будет видно кто деньги увел и вряд ли кто-то захочет свое имя подставлять
84  Local / Бayнти и aиpдpoпы / Re: KYC для бayнтиcтoв oпacнo для жизни! on: September 12, 2018, 03:02:10 PM
поидее если это не обязательно - то для некоторых вещей готов пройти KYC
тем более что уже что-то засветил в интернете
85  Local / Бизнес / Re: Напишем скрипт бесплатно on: August 21, 2018, 01:36:48 PM
нужно написать торгового бота для Erachain
Там есть встроенная биржа и торговое API
http://datachains.world:9067/apitrade

проверить как ордера ставится можно в полной ноде или в блокэксплорере

http://datachains.world:9067/index/blockexplorer.html?asset=2&asset=1&lang=en

версия для разработчиков доступна тут
http://datachains.world/cabinet/download
86  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] Erachain | Blockchain Platform | Proof of Stake | Multifunction on: July 23, 2018, 11:13:16 AM
We plan to start bounty campaign soon, stay tuned guys! Smiley

great to hear that, if you start it with a translation bounty too
can i reserve for indonesian translation if available later?
Ok)
87  Bitcoin / Development & Technical Discussion / Re: Bitcoin RPC send error code -3 - Invalid Amount on: July 06, 2018, 08:00:29 PM
?? Why I see this error code -3 ??

PYTHON code:
Code:
            print 'res = cc.sendtoaddress(addr, amo - txfee)', amo - txfee
            res = cc.sendtoaddress(addr, amo - txfee)
            print "SENDed? ", res

first run >>>
Quote
balance 0.25229647
try send: 0.14307412BTC to 3QgwCppatHV847dA4BYv538aZq8xz6uWuv
res = cc.sendtoaddress(addr, amo - txfee) 0.14297412
SENDed?  {u'id': 1, u'result': None, u'error': {u'message': u'Invalid amount for send', u'code': -3}}

second run >>>
Quote
balance 0.25229647
try send: 0.14307412BTC 3QgwCppatHV847dA4BYv538aZq8xz6uWuv
res = cc.sendtoaddress(addr, amo - txfee) 0.14297412
SENDed?  032e3710d5ac263ddb8bc9f9e295b086c00af8997f7f7ad3af8beca99287f85f
PAYed xcurr - res: {'payment_id': u'032e3710d5ac263ddb8bc9f9e295b086c00af8997f7f7ad3af8beca99287f85f', 'status': 'success'}

why??
balances not changed...

as You see I print value of "amo - txfee" = 0.14297412 - and in first case it is INVALID
but in another case the same value of "amo - txfee" = 0.14297412 - is GOOD

and this error I got only when update core wallet to 0.15 version ((
may be in 0.16 It will be fixed?
88  Bitcoin / Development & Technical Discussion / Re: Bitcoin RPC send error code -3 - Invalid Amount on: July 05, 2018, 11:21:38 AM
The error has nothing to do with the wallet.

Error code -3 means that there was a type error. With the error message "invalid amount for send", the amount that was specified was less than or equal to 0. This means that your code probably has a bug in it where amo is too small.

no, amount in float is > 0

but some times when bitcoin rate move up or down and amount to send is updating and transaction was created successfully

why? It only was on 0.15 version of core wallet
89  Bitcoin / Development & Technical Discussion / Bitcoin RPC send error code -3 - Invalid Amount on: July 03, 2018, 09:04:19 PM
?? Why I see this error code -3 ??

PYTHON code:
Code:
            print 'res = cc.sendtoaddress(addr, amo - txfee)', amo - txfee
            res = cc.sendtoaddress(addr, amo - txfee)
            print "SENDed? ", res

first run >>>
Quote
balance 0.25229647
try send: 0.14307412BTC to 3QgwCppatHV847dA4BYv538aZq8xz6uWuv
res = cc.sendtoaddress(addr, amo - txfee) 0.14297412
SENDed?  {u'id': 1, u'result': None, u'error': {u'message': u'Invalid amount for send', u'code': -3}}

second run >>>
Quote
balance 0.25229647
try send: 0.14307412BTC 3QgwCppatHV847dA4BYv538aZq8xz6uWuv
res = cc.sendtoaddress(addr, amo - txfee) 0.14297412
SENDed?  032e3710d5ac263ddb8bc9f9e295b086c00af8997f7f7ad3af8beca99287f85f
PAYed xcurr - res: {'payment_id': u'032e3710d5ac263ddb8bc9f9e295b086c00af8997f7f7ad3af8beca99287f85f', 'status': 'success'}

why??
balances not changed...
90  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] Erachain | Blockchain Platform | Proof of Stake | Multifunction on: July 02, 2018, 03:27:47 PM
We plan to start bounty campaign soon, stay tuned guys! Smiley
91  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] Erachain | Blockchain Platform | Proof of Stake | Multifunction on: July 02, 2018, 07:51:41 AM
Super stoked on this project! What made you guys decide to use blockchain?
First of all, let me thank you for your attention to our topic. To answer your question, we should refer to the history of our project.

The idea to create the Erachain platform came to its founder Dmitry Ermolaev in 2014. At this time, blockchain technology had already begun to gain recognition among users, mostly because of Bitcoin. It quickly became clear that an entirely new form of decentralized digital interaction was emerging, which allows not only resulted in the creation of crypto-currencies but also a qualitative improvement to existing processes for governments, businesses, and society. While developing the platform, the team had to solve the difficult task of taking into account all the advantages and disadvantages of existing solutions on the market and making the most universally suitable product for everyone. It is important to note that the primary task Erachain set out to achieve was not only to improve and optimize existing technical processes but also to create an open and transparent economy. An open economy on the blockchain will create an entirely new level of trust, responsibility, and security for society.

wow project is very nice and very promising, but I want to ask if there is a bounty campaign? Smiley

We are thinking about this, stay tuned for updates in our topic

Any plan for exchange?  Grin

We are now negotiating with the stock exchanges, as soon as we go to the stock exchange, we will post here an announcement

is there any way to get the coins without buy it? or like can i mining the coins?

i see in the blockchain and i see there is Balance A, B, and C for every address i click. example below


can you explain what is that balance A, B, and C?

Balance A is your current balance. Balance C is a debt balance (the system allows you to borrow and lend units of account) Balance C is the balance that you will need when making transactions related to delivery. It shows the accounting units that are transferred to a third party in the transaction responsible for the delivery.

In our project there are 2 accounting units, ERA and COMPU.

ERA - the accounting unit, which will rise in price with the development of the platform. Expense due to the growth of the project potential (with the implementation it will multiply increase), the development of our solution (sale to customers of software products based on Erachain). The main essence, any accounting units grow on the mood of the market. ICO in this regard is not the best way for this, because even a successful ICO does not guarantee the implementation of the product, and without implementation in the future, there is a collapse of accounting units in the price. We go in a natural way:

1) Implementation, sales solutions

2) Natural, not inflated growth of ERA.

How will accounting units work for business?

Our account unit COMPU is used to pay for each transaction in the system. Thus, when there is an implementation, the system will begin to be filled with transactions, companies will purchase COMPU and use COMPU to send them (pay COMPU for each transaction). Transaction is the transfer of any data (document, asset, etc.)

I hope it became clearer.
92  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] Erachain | Blockchain Platform | Proof of Stake | Multifunction on: June 28, 2018, 08:20:59 AM
How does Erachain generate revenue? Is there some form of fees at some point to use the platform?

Erachain platform will bring profit to investors, purchasers of tokens and also to our partners in the implementation of the platform. For customers, the implementation of the Erachain platform will reduce the cost of the final product, by reducing the cost of delivery to logistics (we reduce the workflow and administrative interactions for the delivery of goods).  For example, for the delivery of only one product from East Africa to Europe, there are up to 200 unique interactions, processing up to 30 people. This is absolutely superfluous actions that the Erachain can optimize and cut costs.

How does Erachain generate revenue? Is there some form of fees at some point to use the platform?

We charge a small, not noticeable commission for each transaction within the system. Logistics is millions of transactions, so the platform will have a good opportunity to earn.
93  Alternate cryptocurrencies / Tokens (Altcoins) / Re: [ANN] Erachain | Blockchain Platform | Proof of Stake | Multifunction on: June 22, 2018, 09:03:03 PM
Erachain is sounds like the New Era of Blockchain Technology. Era is a great team with exceptional knowledge. Target use cases like logistics and healthcare are well suited in this project. Definitely worth to participate!
Thank you for positive comment!
Logistics is our priority at the moment, we see a big potential for transactions and our platform in its processes.

Interesting project. I can't think of any others doing anything similar. Do you have competitors?
Now there are a lot of blockchain projects, but many of them don't have a real product and implementation. We have ready to use blockchain platform, and we are also working hard to implement our solutions. And this work is successful, you can look at our social networks, the positive opinions of representatives of large companies about our product.

Do I need to whitelist to participate in the ICO?
We don't plan to do ICO at the current moment, now we have enough of our own resources and the first place for us is the implementation of our platform in real-selling cases and solutions.

How many tokens will be available to the public?
You can look at our Token distribution map, also later we provide additional information.

What made you guys decide to make this?
We just want to make this world better:)
94  Alternate cryptocurrencies / Tokens (Altcoins) / [ANN] Erachain | Blockchain Platform | Proof of Stake | Multifunction on: June 22, 2018, 01:05:50 PM




95  Local / Бизнес / Re: Совместное инвестирование on: June 03, 2018, 04:13:33 PM

Почему доходность так себе. я какраз считаю что доходность у фондов инвестировавших в айсио довольно хорошая доходность. риски большие  - не без этого но доходность х10 это очень много

Нет, считать надо правильно. Как-то проскакивала статистика по российским ICO, так там примерно 90% это скам. Легко подсчитать, что вложив 100$ которые потеряются в 90% случаев и лишь только 10% дадут те же х10, что вернется Вам теме же 100$  Grin

Прежде, чем кричать об иксах, надо хотя бы изучать статистику венчурных инвесторов. У самых лучших она подходит под 20% и это стартапы с уже готовым продуктом, а в ICO - это в основном идеи, так что процент будет ещё меньше.



все верно
так что фонд это еще не панацея - просто на бирже играйтесь.. если времени не жалко
96  Local / Идеи / Re: проект крипто лотереи on: June 03, 2018, 04:11:35 PM
Нужно мнение общественности.
Проект мульти крипто лотереи.
В лотерею можно играть без регистрации, покупку билетов можно сделать несколькими криптовалютами, выйгрыш перечисляется на тот кошелек с которого была произведена покупка билета.


уже делал такой сайт - причем каждый свою лотерею может затеять и получить с нее %%
без масштабной рекламы не пойдет
97  Local / Идеи / Re: Вам не надоели длинные крипто кошельки? on: June 03, 2018, 04:08:54 PM
Недавно посетила мысль: как же неудобно отправлять крипту на эти длинные 34(42)-ух значные кошельки. Представьте, что вы должны какую-то сумму своему знакомому, но он не помнит номер своего 34(42)-ух значного кошелька, но зато он прекрасно помнит свою почту или номер телефона. Ваш знакомый просто сообщает вам почту или номер телефона и вы переводите ему битки или эфир, например. Какие условия подобного сервиса вас бы удовлетворили?

в нашей платформе Эрачейн можно отправлять сразу пользователю монетки
уже более года работает
98  Local / Бизнес / Re: Помогаем привлекать инвестиции в ICO проекm on: June 03, 2018, 04:01:38 PM
если вы берете процентами от полученных инвестиций - то пишите в личку

вперед ничего не платим, уже обожглись
99  Local / Альтернативные криптовалюты / Re: Cоюз 5-7 проектов для проведения общего ICO on: June 03, 2018, 03:59:24 PM
по факт вы описали работу фонда, крипто-фонда

выпускаете свой токен и под его продажу запускаете ИСО - понравившиеся на рынке команды продвигаете
100  Local / Альтернативные криптовалюты / Re: [Erachain] First Legal Blockchain in the World on: April 17, 2018, 10:44:55 AM
Где нибудь можно найти отчет о проделанной работе на русском языке ?

на форуме
http://datachainsworld.ru/index.php?board=15.0

тут описания
https://github.com/icreator/Erachain_public/tree/master/docs/full_node

да еще готовятся новости
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 ... 190 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!