Index  | Recent Threads  | Unanswered Threads  | Who's Active  | Guidelines  | Search
 

Quick Go »
No member browsing this thread
Thread Status: Active
Total posts in this thread: 245
Posts: 245   Pages: 25   [ Previous Page | 16 17 18 19 20 21 22 23 24 25 | Next Page ]
[ Jump to Last Post ]
Post new Thread
Author
Previous Thread This topic has been viewed 615938 times and has 244 replies Next Thread
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: I can not wait for it....

I checked it from explorer which shows the rewards has been paid out, but my wallet has not received any bytes, is there something wrong with my wallet crying ?

thanks
[Jun 20, 2019 8:38:19 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: I can not wait for it....

one more thing I found, the bot store is not available either. it shows: ERROR: Socket Closed.
[Jun 20, 2019 8:55:53 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: I can not wait for it....

jaja, reason fount, the tor is on by mistake.
[Jun 20, 2019 11:25:33 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Obyte Autonomous Agents

After 9 months of development, a major update is coming that will greatly expand the capabilities of the platform:
https://medium.com/obyte/introducing-autonomous-agents-6fe12fb12aa3
In short, it similar to what Ethereum allows but with a script langage easy to learn and less prone to mistakes.

It's already available on testnet and a dev contest with rewards is organized:
https://medium.com/obyte/obyte-autonomous-agents-developer-contest-6a67ae3dacd2

No time is to be wasted on a complicate setup, there is an online editor where you can check and deploy script in one click!
https://testnet.oscript.org/?source=post_page---------------------------
----------------------------------------
[Edit 1 times, last edit by Former Member at Jul 19, 2019 3:48:39 AM]
[Jul 19, 2019 3:47:31 AM]   Link   Report threatening or abusive post: please login first  Go to top 
adriverhoef
Master Cruncher
The Netherlands
Joined: Apr 3, 2009
Post Count: 2346
Status: Recently Active
Project Badges:
Reply to this Post  Reply with Quote 
[byteball/obyte-gui-wallet] wallet not working under Fedora since May 2018 [RESOLVED]

Anyone not able to open Obyte app after latest update?
Does it show an error?
No error. My steps to reproduce: Downloaded the Linux version from Obyte.org into /tmp. Unzipped it. Then:
...
[WELCOME TO Obyte] ["Creating profile" appears for a few seconds] then program quits unexpectedly without any further messages.

My system is Fedora 29.


This problem has, as far as I can see, been resolved.

Steps to get Obyte running on Fedora 29:

(Once it was working on your system, now it doesn't, so your wallet should still be available.)
Open a terminal. Clean up old junk. Type:
$ rm -R .node-gyp .npm nw-gyp
(If any of the folders above are missing, that's even better.)
Install missing packages. Type:
$ su -c 'dnf install gtk2 gtk3 libcanberra openssl pkgconfig gcc gcc-c++ python make nodejs npm -y'
Let's assume you run a x86_64 version of Fedora 29.
We have to download NW.JS 0.36.4.
Let's use a library directory:
$ mkdir library && cd library
$ wget https://dl.nwjs.io/v0.36.4/nwjs-v0.36.4-linux-x64.tar.gz
$ tar xvzf nwjs-v0.36.4-linux-x64.tar.gz && rm nwjs-v0.36.4-linux-x64.tar.gz
$ mkdir Obyte && cd Obyte && git clone https://github.com/byteball/obyte-gui-wallet.git && cd obyte-gui-wallet && gedit Gruntfile.js
In the file Gruntfile.js, edit line 228 and change the version of NW.JS: this should be 0.36.4 instead of 0.14.7. Save and close the file.
Then type:
$ npm install nw-gyp
$ export npm_config_target=0.36.4
$ export npm_config_arch=x64
$ export npm_config_target_arch=x64
$ export npm_config_runtime=node-webkit
$ export npm_config_build_from_source=true
From now on, ignore warnings and errors, except fatal ones.
$ npm install bower
$ npm install grunt-cli
$ ./node_modules/bower/bin/bower install
$ npm install
$ ./node_modules/grunt/bin/grunt
$ ../../nwjs-v0.36.4-linux-x64/nw .

Now you should be able to start your wallet and finalize your installation:
$ mkdir ../obytebuilds
$ ./node_modules/grunt/bin/grunt desktop
$ cp -R node_modules/ ../obytebuilds/Obyte/linux64/
$ ./node_modules/grunt/bin/grunt linux64

Finished. Your wallet is in the obytebuilds directory:
$ cd ../obytebuilds/Obyte/linux64

[Aug 7, 2019 10:28:54 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: [byteball/obyte-gui-wallet] wallet not working under Fedora since May 2018 [RESOLVED]

Anyone not able to open Obyte app after latest update?
Does it show an error?
No error. My steps to reproduce: Downloaded the Linux version from Obyte.org into /tmp. Unzipped it. Then:
...
[WELCOME TO Obyte] ["Creating profile" appears for a few seconds] then program quits unexpectedly without any further messages.

My system is Fedora 29.


This problem has, as far as I can see, been resolved.

Steps to get Obyte running on Fedora 29:

(Once it was working on your system, now it doesn't, so your wallet should still be available.)
Open a terminal. Clean up old junk. Type:
$ rm -R .node-gyp .npm nw-gyp
(If any of the folders above are missing, that's even better.)
Install missing packages. Type:
$ su -c 'dnf install gtk2 gtk3 libcanberra openssl pkgconfig gcc gcc-c++ python make nodejs npm -y'
Let's assume you run a x86_64 version of Fedora 29.
We have to download NW.JS 0.36.4.
Let's use a library directory:
$ mkdir library && cd library
$ wget https://dl.nwjs.io/v0.36.4/nwjs-v0.36.4-linux-x64.tar.gz
$ tar xvzf nwjs-v0.36.4-linux-x64.tar.gz && rm nwjs-v0.36.4-linux-x64.tar.gz
$ mkdir Obyte && cd Obyte && git clone https://github.com/byteball/obyte-gui-wallet.git && cd obyte-gui-wallet && gedit Gruntfile.js
In the file Gruntfile.js, edit line 228 and change the version of NW.JS: this should be 0.36.4 instead of 0.14.7. Save and close the file.
Then type:
$ npm install nw-gyp
$ export npm_config_target=0.36.4
$ export npm_config_arch=x64
$ export npm_config_target_arch=x64
$ export npm_config_runtime=node-webkit
$ export npm_config_build_from_source=true
From now on, ignore warnings and errors, except fatal ones.
$ npm install bower
$ npm install grunt-cli
$ ./node_modules/bower/bin/bower install
$ npm install
$ ./node_modules/grunt/bin/grunt
$ ../../nwjs-v0.36.4-linux-x64/nw .

Now you should be able to start your wallet and finalize your installation:
$ mkdir ../obytebuilds
$ ./node_modules/grunt/bin/grunt desktop
$ cp -R node_modules/ ../obytebuilds/Obyte/linux64/
$ ./node_modules/grunt/bin/grunt linux64

Finished. Your wallet is in the obytebuilds directory:
$ cd ../obytebuilds/Obyte/linux64


Very useful guide! I try to get this on our wiki.

I want to send you a tip for this. Do you have your username registered at Obyte? Otherwise simply post a receive address of your wallet.
[Aug 8, 2019 6:16:27 AM]   Link   Report threatening or abusive post: please login first  Go to top 
adriverhoef
Master Cruncher
The Netherlands
Joined: Apr 3, 2009
Post Count: 2346
Status: Recently Active
Project Badges:
Reply to this Post  Reply with Quote 
Re: [byteball/obyte-gui-wallet] wallet not working under Fedora since May 2018 [RESOLVED]

I think you should thank n-ric-v on Github; n-ric-v e-mailed me with a solution and I have merely followed the instructions, with a few adjustments and tweaks here and there to make it work. smile


After that, I was gladly surprised that 'obyte' appeared as an entry in my XFCE desktop menu, but when clicking it, it didn't work yet: an almost empty NW.JS window was showing; so I compared the two "obyte.desktop" files (the one from the Obyte source and the one in ~/.local/share/applications/obyte.desktop) and the only thing I had to change was this line:
Exec=/home/....../nwjs-v0.36.4-linux-x64/nw %u
into something like:
Exec=/home/....../Obyte/obytebuilds/Obyte/linux64/Obyte %u
(where the dots represent the exact path to match the final location of the executable 'Obyte', e.g. /home/my_username/library/Obyte/obytebuilds/Obyte/linux64/Obyte).
[Aug 8, 2019 11:16:11 AM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: [byteball/obyte-gui-wallet] wallet not working under Fedora since May 2018 [RESOLVED]

I think you should thank n-ric-v on Github; n-ric-v e-mailed me with a solution and I have merely followed the instructions, with a few adjustments and tweaks here and there to make it work. smile


After that, I was gladly surprised that 'obyte' appeared as an entry in my XFCE desktop menu, but when clicking it, it didn't work yet: an almost empty NW.JS window was showing; so I compared the two "obyte.desktop" files (the one from the Obyte source and the one in ~/.local/share/applications/obyte.desktop) and the only thing I had to change was this line:
Exec=/home/....../nwjs-v0.36.4-linux-x64/nw %u
into something like:
Exec=/home/....../Obyte/obytebuilds/Obyte/linux64/Obyte %u
(where the dots represent the exact path to match the final location of the executable 'Obyte', e.g. /home/my_username/library/Obyte/obytebuilds/Obyte/linux64/Obyte).


I know that user from Discord and will contact him, thanks!
[Aug 8, 2019 3:38:02 PM]   Link   Report threatening or abusive post: please login first  Go to top 
analani
Cruncher
Spain
Joined: Jul 7, 2011
Post Count: 2
Status: Offline
Project Badges:
Reply to this Post  Reply with Quote 
Re: Byteball.org Team

Hi everybody
[Aug 23, 2019 12:45:50 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Former Member
Cruncher
Joined: May 22, 2018
Post Count: 0
Status: Offline
Reply to this Post  Reply with Quote 
Re: Byteball.org Team

Hi everybody


Hi Analani!
Welcome in the Obyte team. We’re all happy crunchers here! biggrin
----------------------------------------
[Edit 1 times, last edit by Former Member at Aug 23, 2019 1:12:45 PM]
[Aug 23, 2019 1:11:48 PM]   Link   Report threatening or abusive post: please login first  Go to top 
Posts: 245   Pages: 25   [ Previous Page | 16 17 18 19 20 21 22 23 24 25 | Next Page ]
[ Jump to Last Post ]
Post new Thread