Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - JA

Pages: [1] 2 3 4 5
1
Marketplace / [PHP] memo decryption script
« on: October 24, 2015, 08:15:42 pm »
I need a php script to decrypt memos with a private memo key. (if thats even possible)
I am way too noobie to do it myself.


https://github.com/xeroc/python-graphenelib/blob/master/docs/memo.rst
here is a python script from xerocs python graphenelib.
https://github.com/xeroc/python-graphenelib/blob/master/graphenebase/memo.py

Feel free to send me a offer via pm.

2
Technical Support / curl bitshares 2 api help
« on: October 20, 2015, 06:21:19 pm »
I have a hard time understanding how the bitshares 2 api works.
For example i want to get the transaction history of an account.
in bts 1:
{"method": "wallet_account_transaction_history", "params": ["myaccount"], "id": "0"}

how does it work in bts 2.0 with get_account_history?

4
Technical Support / read-only key/permission posssible in bts 2.0?
« on: September 29, 2015, 06:14:46 am »
Will it be possible in bts 2.0 to generate a key/permission from an account, that i can give someone else so he can only see the transactions/operations regarding the account but is not able to execute anything?
And can the account revoke this permission later again?


5
Technical Support / BitShares RPC slow while syncing?
« on: September 21, 2015, 08:06:24 pm »
Hey im currently trying to get some info from a local wallet via curl in php.
Which works.
But the response form the client takes often longer than a minute.
Am i doing something wrong or does the wallet always take so long to answer while syncing?


here the php code
Code: [Select]
$data_string = '{"method": "get_info", "params": [], "id": "0"}';
$username = 'test';
$password = 'test';                                                                 
$ch = curl_init('http://127.0.0.1:19988/rpc');

curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");                                                               
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                     
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);                                                                 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                     
curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                         
    'Content-Type: application/json',                                                                               
    'Content-Length: ' . strlen($data_string))                                                                       
);                                                                                                                   
                                                                                                                     
$result = curl_exec($ch);
print_r ($result);

6
Technical Support / Custom css in BTS 2.0?
« on: September 09, 2015, 10:05:35 am »
Would it be possible to add a small window on a settings page where users could put in some custom css code at least when its opened in a browser?
People could just share their styles or just change it to their liking.

I personally would like to make it look similar to poloniex in dark mode for example.

8
Beyond Bitcoin [closed] / Brownie distribution
« on: August 17, 2015, 10:38:28 am »
I can set up a form page on bb.org where people can fill in their  forum user id ( eg. u=602).
And it will get the bts id and mumble username fields (we have to ask a forum admin to add this one) and adds it to a database.
After that the mumble host or admin can press a button when the hangout is running and a script will check whos online and will save it.
After the hangout is over a host/admin can click on a payout button and it will send out the brownies.
A page would be available on bb.org that shows the past hangouts including the users who were there and if the brownies are sent out.

So at the end a host/admin only has to click two buttons (once during the hangout and once after the hangout) to handle the whole thing.

(and it kinda can prevent  sybil attacks by checking a minimum of required posts to be able to recieve brownies eg. 100 or something and prevent idle farmers by checking how long they have been online eg. >6h before hangout (a reconnect will reset this))

Sounds good? or is someone alse already working on it?

10
Meta / Can we add more emoticons?
« on: August 06, 2015, 03:28:53 am »
Like Brownies, BitShares and BitUSD, BeyondBitcoin and  BMs cartoon face.





It's hard to express my feelings without them  ;)

Pages: [1] 2 3 4 5