create account

Byteball.js: The JavaScript library for Byteball is out! by fabien

View this thread on: hive.blogpeakd.comecency.com
· @fabien · (edited)
$111.68
Byteball.js: The JavaScript library for Byteball is out!
#### Repository
https://github.com/bonuschain/byteball.js

![Byteball.js](https://ipfs.busy.org/ipfs/QmVRxnuePuAjdeYyCBAfqiTZaSSPzH4iAB6GEHWoM6inaM)

Today we are proud to bring you the beta release of Byteball.js! 

### What is it?
Byteball.js is a JavaScript library that allow you to interact with a Byteball node. It was designed to work both in the browser and in Node.js. If you are familiar to Steem.js you will quickly understand how Byteball.js works, both of these libraries serve the same purpose but they are just made for a different chain.

### What can you do with it?
Here are some cool things you can do today using Byteball.js:
- Spend bytes or others Byteball public asset.
- Create your own token, bind a smart contract on your token.
- Run an oracle service, post verifiable data on the chain that can be used by smart contracts.
- Work with attestations, build an attestor service or check attested addresses.
- Create polls and vote for them.
- Set your public profile.
- Post arbitrary data or text on the DAG.

### Quick start

#### Install
To install Byteball.js on Node.js, open your terminal and run: 
```
npm i byteball --save
```

You can also create an index.html file and include Byteball.js script to use it on your browser like this:
```
<script src="https://cdn.jsdelivr.net/npm/byteball"></script>
```

#### Usage
Here is how to initiate the client:
```
const byteball = require('byteball');

const client = new byteball.Client(); ​
```
All API methods follow this pattern: 

```
// If the last argument is a function it is treated as a callback 
client.api.getJoint('oj8yEksX9Ubq7lLc+p6F2uyHUuynugeVq4+ikT67X6E=', function(err, result) {
  console.log(err, result);
}); 

// If a callback is not provided, a Promise is returned 
client.api.getJoint('oj8yEksX9Ubq7lLc+p6F2uyHUuynugeVq4+ikT67X6E=').then(function(result) {
  console.log(result);
});
```
#### Transaction
To compose and post unit you need first to create a Byteball wallet and fund it with the native currency ‘bytes’. The generated WIF will be used on Byteball.js. Click on this link to learn more: https://byteballjs.com/utils/generate-wallet 

Here is how to make a payment:
```
const wif = '5JBFvTeSY5...'; // WIF string generated (private key)
const params = {
  outputs: [
    { 
      address: 'NX2BTV43XN6BOTCYZUUFU6TK7DVOC4LU', // The Byteball address of the recipient 
      amount: 1000 // The amount he receives
    } 
  ] 
}; 

client.post.payment(params, wif, function(err, result) {
  console.log(result); // The unit hash is returned
});
```

### Documentation
You can find the current documentation for Byteball.js at https://byteballjs.com

### How to contribute?
Byteball.js code is entirely open source with a MIT license. You are welcome to contribute on the project by opening issues and pull requests on the GitHub repo here: https://github.com/bonuschain/byteball.js

### Roadmap
In the next few months we are going to implement new features on Byteball.js like these:
- Ability to broadcast smart contract
- Ability to verify attested private profile
- Ability to send private messages 
- Ability to send private payment

### Join the discussion
Got some ideas, questions or feedbacks you want talk about? We would love to hear from you, join the discussion here or on Byteball Slack channel #byteball-js. Click here to get invited: https://slack.byteball.org.

### Final words
We would like to thank Byteball trustees who voted to fund this project and also Utopian for helping open source projects like Byteball.js.

#### GitHub Account
https://github.com/bonuschain
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 290 others
properties (23)
authorfabien
permlinkbyteball-js-the-javascript-library-for-byteball-is-out
categoryutopian-io
json_metadata{"links":["https://github.com/bonuschain/byteball.js","https://ipfs.busy.org/ipfs/QmVRxnuePuAjdeYyCBAfqiTZaSSPzH4iAB6GEHWoM6inaM","https://cdn.jsdelivr.net/npm/byteball","https://byteballjs.com/utils/generate-wallet","https://byteballjs.com","https://github.com/bonuschain/byteball.js","https://slack.byteball.org","https://github.com/bonuschain"],"tags":["utopian-io","development","byteball","byteball-js","busy"],"app":"esteem/1.1.12-surfer","format":"markdown+html","community":"esteem.app"}
created2018-08-23 13:44:54
last_update2018-09-01 16:28:33
depth0
children30
last_payout2018-08-30 13:44:54
cashout_time1969-12-31 23:59:59
total_payout_value92.354 HBD
curator_payout_value19.328 HBD
pending_payout_value0.000 HBD
promoted1.000 HBD
body_length3,594
author_reputation16,649,367,183,999
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,125,555
net_rshares76,084,756,763,603
author_curate_reward""
vote details (354)
@alphatau ·
It's a great job
properties (22)
authoralphatau
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180825t022359647z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-25 02:24:00
last_update2018-08-25 02:24:00
depth1
children0
last_payout2018-09-01 02:24:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation24,335,905
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,282,398
net_rshares0
@blockchainstudio ·
Hi @fabien,

I made @sisilafamille follow me :)

https://busy.org/@sisilafamille/blockchainstudio-the-creator-of-gomdory

Thanks a lot for your work on busy and steemconnect. Please give me a fullvote by @busy.pay haha :)
properties (22)
authorblockchainstudio
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180924t201242530z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"users":["fabien","sisilafamille","busy.pay"],"links":["https://busy.org/@sisilafamille/blockchainstudio-the-creator-of-gomdory"],"app":"steemit/0.1"}
created2018-09-24 20:12:42
last_update2018-09-24 20:12:42
depth1
children4
last_payout2018-10-01 20:12:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length221
author_reputation178,988,499,015,921
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,160,007
net_rshares0
@fabien ·
Ho i see well done! I was wondering what this was about lol. Where did you got @sisilafamille key by the way?
properties (22)
authorfabien
permlinkre-blockchainstudio-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180925t031316412z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["sisilafamille"],"links":["/@sisilafamille"],"image":[]}
created2018-09-25 03:13:21
last_update2018-09-25 03:13:21
depth2
children3
last_payout2018-10-02 03:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation16,649,367,183,999
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,187,104
net_rshares0
@blockchainstudio · (edited)
Thanks for your reply! I don't have a key for @sisilafamille. Probably only you know it :) As you know (probably you may have forgotten cause it might be too old days), @sisilafamille has multisig (2 of any @guest123, @hellosteem, and of course you :) and keys for @guest123 and @hellosteem are open in the examples, e.g., steem-js and such. Actually there is a multisig test code using that combination (but not for following function. following is a little bit more trickly since it requires custom_json)

Since it's open in github source, I think it can be used for some testing by anybody, right? Actually many already did. But @sisilafamille's following was the first :)

This is the posting about it. Show me your full vote :) I'm kidding but it'd be good to have your voting. of course need not be a full vote.  https://busy.org/@blockchainstudio/multisig-sisilafamille-followee
Sorry it's mainly in Korean. I told people that I'll give some steem if they also make @sisilafamille follow them. One guy already made it :)

You're working in busy, especially on steemconnect, right? I worked at Facebook headquarter before, and that's one reason why I'm more interested in Steemit. Now I'm in academia as an economist. But I was also a SWE before, so these days I'm doing some programming on the steem blockchain as a hobby. @gomdory (it means "bear" in Korean) is such a thing. It's a bot (in kr community) that gives a free vote on comments that would be lost otherwise (i.e., < $0.02) As you know kr is a big community on steemit. but many left (probably due to steem/sbd price). @gomdory is to support people write interesting comments on neighbor's posts. (he only votes when some minimum is already voted and there are many exclusion rules to avoid abusing)
properties (22)
authorblockchainstudio
permlinkre-fabien-re-blockchainstudio-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180925t125518650z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["sisilafamille.","sisilafamille","guest123","hellosteem","blockchainstudio","gomdory"],"links":["/@sisilafamille","/@sisilafamille","/@guest123","/@hellosteem","/@guest123","/@hellosteem","/@sisilafamille","https://busy.org/@blockchainstudio/multisig-sisilafamille-followee","/@sisilafamille","/@gomdory"],"image":[]}
created2018-09-25 12:55:21
last_update2018-09-25 13:01:51
depth3
children2
last_payout2018-10-02 12:55:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,768
author_reputation178,988,499,015,921
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id72,227,353
net_rshares0
@blockchainstudio ·
Another interesting thing that I've found (maybe this isn't new though) https://steemit.com/kr-steemit/@blockchainstudio/hangeul-tag

Just see the tags :) I'm actually worried buffer overflow attack, but maybe it's prevented by the block-size limit.
properties (22)
authorblockchainstudio
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20181020t161609179z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":["blockchainstudio"],"links":["https://steemit.com/kr-steemit/@blockchainstudio/hangeul-tag"],"image":[]}
created2018-10-20 16:16:09
last_update2018-10-20 16:16:09
depth1
children0
last_payout2018-10-27 16:16:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation178,988,499,015,921
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id73,696,036
net_rshares0
@dakeshi · (edited)
$0.16
great job. thank you for opening new door to many front-end developers. it helps to make more powerful byteball ecosystem
👍  ,
properties (23)
authordakeshi
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180823t140435938z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-23 14:04:36
last_update2018-08-23 14:05:27
depth1
children1
last_payout2018-08-30 14:04:36
cashout_time1969-12-31 23:59:59
total_payout_value0.160 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length121
author_reputation42,670,029,273,733
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,127,280
net_rshares111,892,991,691
author_curate_reward""
vote details (2)
@codemonkeyindy ·
Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].
👎  
properties (23)
authorcodemonkeyindy
permlinkre-dakeshi-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180825t150322665z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-25 15:03:21
last_update2018-08-25 15:03:21
depth2
children0
last_payout2018-09-01 15:03:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length802
author_reputation-268,603,097,670
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,329,811
net_rshares-25,081,800,917
author_curate_reward""
vote details (1)
@duendeath ·
Greetings! Thanks for the post. Reesteem
properties (22)
authorduendeath
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180823t152318881z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-23 14:52:45
last_update2018-08-23 14:52:45
depth1
children0
last_payout2018-08-30 14:52:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length40
author_reputation84,622,768,712
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,131,889
net_rshares0
@emrebeyler ·
$0.17
Cool stuff. 

This reminded me that I should complete the python version. :)
👍  , ,
properties (23)
authoremrebeyler
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180823t142533463z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-23 14:25:33
last_update2018-08-23 14:25:33
depth1
children4
last_payout2018-08-30 14:25:33
cashout_time1969-12-31 23:59:59
total_payout_value0.164 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length76
author_reputation448,535,049,068,622
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,129,271
net_rshares120,190,767,152
author_curate_reward""
vote details (3)
@codemonkeyindy ·
Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].  Steem transfer error: [invalid trans: 6789], [report lost steem].
👎  ,
properties (23)
authorcodemonkeyindy
permlinkre-emrebeyler-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180825t150300587z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-25 15:03:00
last_update2018-08-25 15:03:00
depth2
children0
last_payout2018-09-01 15:03:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length869
author_reputation-268,603,097,670
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,329,781
net_rshares-27,859,506,980
author_curate_reward""
vote details (2)
@rondras ·
Are you working on a python library for Byteball? This would be great!
properties (22)
authorrondras
permlinkre-emrebeyler-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180823t143407283z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-23 14:35:09
last_update2018-08-23 14:35:09
depth2
children2
last_payout2018-08-30 14:35:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length70
author_reputation18,390,194,709,037
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,130,188
net_rshares0
@emrebeyler ·
Yes, I have started a couple of months ago, but couldnt touch it lately. :)
properties (22)
authoremrebeyler
permlinkre-rondras-re-emrebeyler-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180823t143808291z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-23 14:38:09
last_update2018-08-23 14:38:09
depth3
children1
last_payout2018-08-30 14:38:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length75
author_reputation448,535,049,068,622
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,130,503
net_rshares0
@imtase ·
$0.14
Nice work :) @fabien sais-tu si il existe un benchmark de comparaison avec les autres types (blockchain, DAG version IOTA) quelque part (ai pas trouvé) et si tu avais un article de départ à conseiller au sujet de Byteball et de ce qu'il est possible de faire avec quel serait-il (français ou anglais peu d'importance)?
👍  
👎  
properties (23)
authorimtase
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180824t040505604z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak"}
created2018-08-24 04:05:09
last_update2018-08-24 04:05:09
depth1
children3
last_payout2018-08-31 04:05:09
cashout_time1969-12-31 23:59:59
total_payout_value0.109 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length318
author_reputation27,031,761,187,194
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,188,617
net_rshares99,582,972,989
author_curate_reward""
vote details (2)
@codemonkeyindy ·
Steem transfer error: [invalid trans: 1059], [report lost steem immediately].  Steem transfer error: [invalid trans: 1059], [report lost steem immediately].  Steem transfer error: [invalid trans: 1059], [report lost steem immediately].  Steem transfer error: [invalid trans: 1059], [report lost steem immediately].  Steem transfer error: [invalid trans: 1059], [report lost steem immediately].  Steem transfer error: [invalid trans: 1059], [report lost steem immediately].  Steem transfer error: [invalid trans: 1059], [report lost steem immediately].  Steem transfer error: [invalid trans: 1059], [report lost steem immediately].  Steem transfer error: [invalid trans: 1059], [report lost steem immediately].  Steem transfer error: [invalid trans: 1059], [report lost steem immediately].
👎  
properties (23)
authorcodemonkeyindy
permlinkre-imtase-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180825t150416362z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-25 15:04:15
last_update2018-08-25 15:04:15
depth2
children0
last_payout2018-09-01 15:04:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length788
author_reputation-268,603,097,670
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,329,884
net_rshares-25,081,800,917
author_curate_reward""
vote details (1)
@fabien ·
$0.04
Hello, il y a ces comparaisons avec d'autre DAG:
https://www.guidetocrypto.com/investing/byteball-vs-iota-vs-raiblocks-directed-acyclic-graph-dac-coin-comparison/
https://cdn-images-1.medium.com/max/1600/0*U6VNsbVfoAt4JTA8.
Sinon cette interview est pas mal:
https://altcoinspekulant.com/2016/10/06/byteball-exclusive-interview-with-developer-tonych-in-english/
Et le mieux pour connaitre les possibilités de Byteball c'est de lire le whitepaper ici: https://byteball.org/Byteball.pdf
👍  , , ,
properties (23)
authorfabien
permlinkre-imtase-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180824t114652179z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":["https://www.guidetocrypto.com/investing/byteball-vs-iota-vs-raiblocks-directed-acyclic-graph-dac-coin-comparison/","https://cdn-images-1.medium.com/max/1600/0*U6VNsbVfoAt4JTA8","https://altcoinspekulant.com/2016/10/06/byteball-exclusive-interview-with-developer-tonych-in-english/","https://byteball.org/Byteball.pdf"],"image":[]}
created2018-08-24 11:46:54
last_update2018-08-24 11:46:54
depth2
children1
last_payout2018-08-31 11:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.008 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length484
author_reputation16,649,367,183,999
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,219,981
net_rshares30,910,788,162
author_curate_reward""
vote details (4)
@imtase ·
Merci pour tous ces liens, c'est sympa!
properties (22)
authorimtase
permlinkre-fabien-re-imtase-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180824t134315124z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"steempeak","app":"steempeak"}
created2018-08-24 13:43:15
last_update2018-08-24 13:43:15
depth3
children0
last_payout2018-08-31 13:43:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation27,031,761,187,194
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,228,959
net_rshares0
@jessearmand ·
$0.15
Great, this will encourage more adoption with the platform
👍  
properties (23)
authorjessearmand
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180824t094747365z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-24 09:47:48
last_update2018-08-24 09:47:48
depth1
children0
last_payout2018-08-31 09:47:48
cashout_time1969-12-31 23:59:59
total_payout_value0.109 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation1,784,364,313
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,211,650
net_rshares99,674,145,989
author_curate_reward""
vote details (1)
@kirkins ·
$0.11
Interesting, I might have to try this out.

I'm liking Byteball so far, been "mining" with World Community Grid. Sports betting is very well done too.

Good to see you're involved on that chain too.
👍  
properties (23)
authorkirkins
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180901t153953894z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-09-01 15:39:57
last_update2018-09-01 15:39:57
depth1
children0
last_payout2018-09-08 15:39:57
cashout_time1969-12-31 23:59:59
total_payout_value0.084 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length198
author_reputation40,750,987,805,431
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id70,012,008
net_rshares91,556,806,098
author_curate_reward""
vote details (1)
@spyder896 ·
$0.14
Good news will try to impliment 

Posted using [Partiko Android](https://play.google.com/store/apps/details?id=io.partiko.android)
👍  
properties (23)
authorspyder896
permlinkspyder896-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180829t132847184z
categoryutopian-io
json_metadata{"app":"partiko"}
created2018-08-29 13:28:48
last_update2018-08-29 13:28:48
depth1
children1
last_payout2018-09-05 13:28:48
cashout_time1969-12-31 23:59:59
total_payout_value0.103 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length130
author_reputation397,631,116,717
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,701,011
net_rshares91,404,338,501
author_curate_reward""
vote details (1)
@fabien ·
Good to hear!
properties (22)
authorfabien
permlinkre-spyder896-spyder896-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180829t175910432z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-08-29 17:59:12
last_update2018-08-29 17:59:12
depth2
children0
last_payout2018-09-05 17:59:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation16,649,367,183,999
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,723,192
net_rshares0
@steem-ua ·
Hi @fabien! We are @steem-ua, a new Steem dApp, computing UserAuthority for all accounts on Steem. Starting from the witnesses, UA propagates from user to user based on its followers until equilibirum is reached. We are currently in test modus upvoting quality contributions with a high UA value (UA_author + UA_post)! Your UA_post value is 7.803.
properties (22)
authorsteem-ua
permlinkre-byteball-js-the-javascript-library-for-byteball-is-out-20180823t173641z
categoryutopian-io
json_metadata"{"app": "beem/0.19.54"}"
created2018-08-23 17:36:42
last_update2018-08-23 17:36:42
depth1
children0
last_payout2018-08-30 17:36:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length347
author_reputation23,214,230,978,060
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,146,221
net_rshares0
@sudutpandang ·
Thank you for sharing...
properties (22)
authorsudutpandang
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180824t093533691z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-24 09:35:51
last_update2018-08-24 09:35:51
depth1
children0
last_payout2018-08-31 09:35:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation51,882,223,172,306
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,210,756
net_rshares0
@tngflx ·
$0.14
Hmm this makes me wonder what's the benefit of developing on byteball? What kind of project on steem can we link to byteball?
👍  
properties (23)
authortngflx
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180823t141721020z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":[],"image":[]}
created2018-08-23 14:17:21
last_update2018-08-23 14:17:21
depth1
children3
last_payout2018-08-30 14:17:21
cashout_time1969-12-31 23:59:59
total_payout_value0.109 HBD
curator_payout_value0.035 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation17,396,455,988,713
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,128,512
net_rshares99,674,145,989
author_curate_reward""
vote details (1)
@fabien ·
There can be a lot of use case for Steem app using Byteball. The first thing that come in my mind is ICO. Byteball make it easy to create your asset and run an ICO similar than ERC20 token for Ethereum it could be used for app willing to launch a SMT see more detail here: https://bitcointalk.org/index.php?topic=4934262.0 . You can also leverage Byteball protocol for manage attestations or create smart contracts.
properties (22)
authorfabien
permlinkre-tngflx-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180824t114037216z
categoryutopian-io
json_metadata{"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["utopian-io"],"users":[],"links":["https://bitcointalk.org/index.php?topic=4934262.0"],"image":[]}
created2018-08-24 11:40:39
last_update2018-08-24 11:40:39
depth2
children0
last_payout2018-08-31 11:40:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length415
author_reputation16,649,367,183,999
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,219,531
net_rshares0
@punqtured ·
With the extensive APIs for Steem, I'd be amazed if someone didn't create an oracle to pick up stuff on Steem to resolve conditions on smart contracts. It would allow two Steem users to make a bet how many votes a given post would get in 30 minutes. After 30 minutes, the oracle posts the data from the API to the Byteball DAG, thereby allowing the conditions of the smart contract to determine which of the two parties can withdraw the funds that both users deposited on it for the bet. 

Stuff like that :)
👍  
properties (23)
authorpunqtured
permlinkre-tngflx-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180824t224829525z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-24 22:48:30
last_update2018-08-24 22:48:30
depth2
children1
last_payout2018-08-31 22:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length508
author_reputation4,806,938,276,068
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,269,419
net_rshares598,451,482
author_curate_reward""
vote details (1)
@zarkmuckerbarn ·
A STEEMbet bot is quite a thought!  Vote A or B, in time we'll see!  Your wheels are always turning.  Fantastic ideas. Love it!
properties (22)
authorzarkmuckerbarn
permlinkre-punqtured-re-tngflx-re-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180831t054047172z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-31 05:40:48
last_update2018-08-31 05:40:48
depth3
children0
last_payout2018-09-07 05:40:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length127
author_reputation24,063,356,517
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id69,861,849
net_rshares0
@yandot ·
$0.12
I am really support this project man! Great work for you and team!
👍  
properties (23)
authoryandot
permlinkre-fabien-byteball-js-the-javascript-library-for-byteball-is-out-20180825t111112852z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"app":"steemit/0.1"}
created2018-08-25 11:13:21
last_update2018-08-25 11:13:21
depth1
children0
last_payout2018-09-01 11:13:21
cashout_time1969-12-31 23:59:59
total_payout_value0.088 HBD
curator_payout_value0.029 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation58,960,556,959,543
root_title"Byteball.js: The JavaScript library for Byteball is out!"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id69,313,006
net_rshares81,248,300,890
author_curate_reward""
vote details (1)