Author

Topic: [NEW XBY ANN] XTRABYTES - BECAUSE THE BLOCKCHAIN CAN BE BETTER - page 165. (Read 371134 times)

full member
Activity: 182
Merit: 100
Hello everybody,
I am happy to share with you my XBY tester experience.
Yes yesterday I received access with some of us at the SLACK channel dedicated to TESTNET.
I see our development team working actively, I am impressed!
Borzalom is present there, we receive instructions from Borzalom, CCREV, Rule144, Gatuso, JCPBS, smokim87 ....
It's very exciting !
I just finished installing and synchronizing the TESTWALLET received in the night!
Team DEV will send us TESTCOIN and we will spam the TESTNET network today.
WHAOU, thank you XBY to offer us this experience.
It's nice to be in direct contact with the DEV team and see the technology really.
I encourage you to participate in the TESTNET and thank you XBY for offering us this opportunity!
It's good to see XBY technoligy come true and the DEV team work well!
member
Activity: 70
Merit: 10


The new TESTNET wallet (with bugs fixed) has been compiled and another hard reset has just occurred. This means that we must wait for block 122 before transactions can start again and this is about 4 hours away... So, we will be picking things up again after some sleeps.

Thank you all for your patience as we work though this very interesting phase of XTRABYTES development!!

Dave, Borz and the TESTNET Crew!!







This week just keeps getting better and better.  I admit, I don't know much about how to test a network, but there are many in the Slack just chomping at the bit to run scripts on this thing.  It's exciting to just to be there and see people coming together to start thins thing.

I am one of those chomping at the bit. I want to punish this baby. Cheesy

From what I've seen we have a script that is capable of pushing the network, but I invite anyone with scripting/networking experience to look over what has been written so far and we can work to really put the TestNet through it's paces.

Here are the script(s), feel free to suggest any alterations:

xby-bot.py - written by smokim87
Code:
import requests
import json
 
def main():
    # default RPC port for XBY
    rpc_port = 35001
 
    # RPC credentials, as specified in xtrabytes.conf
    rpc_user = "testuser"
    rpc_password = "testpassword"
 
    # Generating the url from the specified credentials
    url = "http://" + rpc_user + ":" + rpc_password + "@localhost:" + str(rpc_port)
 
    # Setting the header
    headers = {'content-type': 'application/json'}
 
    # Specifying the recipients wallets. Although it might be easier to read from file/DB
    recipients = ['address1', 'address2', 'address3']
  
    # Set amount
    amount_to_send = 1000
 
    # Loop over the receiving addresses
    for recipient in recipients:
        # Example of sending the money transfer command
        payload = {
            "method": "sendtoaddress",
            "params": [recipient, amount_to_send],
            "jsonrpc": "2.0",
            "id": 0,
        }
 
        # Send the RPC request
        response = requests.post(
            url, data=json.dumps(payload), headers=headers).json()
  
        # Print the Response
        print(response.json()['result'])
 
if __name__ == "__main__":
    main()

There is also another:

testnet.php - written by gatuso
Code:
Ok guys you need to get this file:

https://raw.githubusercontent.com/aceat64/EasyBitcoin-PHP/master/easybitcoin.php

Save it to a folder. In the same folder save the code in a file testnet.php:

require_once('easybitcoin.php');

$rpcuser 'x';
$rpcpass 'y';
$port '35001';
$rpcip '127.0.0.1';

//$argv[0] name of file
//$argv[1]  address to send
//$argv[2]  amount to send
//$argv[3]  loop times

echo 'Begin';
echo 
'

'
;
echo 
'

'
;
$bitcoin = new Bitcoin($rpcuser,$rpcpass,$rpcip,$port);
$bitcoin->getaddressesbyaccount();
$address=null;

if(isset(
$bitcoin->response["result"][0]))
$address=$bitcoin->response["result"][0];

if(isset(
$argv[1]))
$address $argv[1];
else if(isset(
$address))
$address $bitcoin;
else{
echo "No address, no send"; die;
}


if(isset(
$argv[2]))
$amount $argv[2];
else
$amount 2;

if(isset(
$argv[3]))
$loop_times $argv[3];
else
$loop_times 1;

echo 
'Sending';
echo 
'

'
;
$tx = array();

for(
$i=0;$i<$loop_times;$i++)
{
$bitcoin->sendtoaddress($address,$amount);
array_push$tx,$bitcoin->response["result"] );
}

echo 
'Sent';
echo 
'

'
;
echo 
'TX:';
echo 
'

'
;
var_dump($tx);
echo 
'

'
;
echo 
'

'
;
echo 
'End';
?>


Then you can open shell and run: php testnet.php

You need PHP installed and configured in your OS.
I did this just now, not sure gonna work.

Again, if you have a script you think will test/punish the network, come forward in Slack and we will look at running it. Otherwise if you can think of any additions alterations to the code above then please don't be shy! This is an exciting time to be involved guys and it is very much a community effort at the moment.
member
Activity: 162
Merit: 10
Hey my apologies I'm a newbie with almost a yr in crypto but I've run in this hidden gem now and wondering if XBY has been on bittrex or Polo yet?

Not yet on bittrex nor Polo. Waiting for the full testing and running of static node before going on both.

Thanks for the answer much appreciated brother
sr. member
Activity: 546
Merit: 252


The new TESTNET wallet (with bugs fixed) has been compiled and another hard reset has just occurred. This means that we must wait for block 122 before transactions can start again and this is about 4 hours away... So, we will be picking things up again after some sleeps.

Thank you all for your patience as we work though this very interesting phase of XTRABYTES development!!

Dave, Borz and the TESTNET Crew!!







This week just keeps getting better and better.  I admit, I don't know much about how to test a network, but there are many in the Slack just chomping at the bit to run scripts on this thing.  It's exciting to just to be there and see people coming together to start thins thing.
full member
Activity: 345
Merit: 105
XBY is mentioned in this video, Shitcoins to gold dust at 1:10.

https://m.youtube.com/watch?v=opLVLoRUt8w
member
Activity: 139
Merit: 10
Hey my apologies I'm a newbie with almost a yr in crypto but I've run in this hidden gem now and wondering if XBY has been on bittrex or Polo yet?

Not yet on bittrex nor Polo. Waiting for the full testing and running of static node before going on both.
member
Activity: 139
Merit: 10


The new TESTNET wallet (with bugs fixed) has been compiled and another hard reset has just occurred. This means that we must wait for block 122 before transactions can start again and this is about 4 hours away... So, we will be picking things up again after some sleeps.

Thank you all for your patience as we work though this very interesting phase of XTRABYTES development!!

Dave, Borz and the TESTNET Crew!!







Nice update. Waiting to see more great news.
member
Activity: 162
Merit: 10
Hey my apologies I'm a newbie with almost a yr in crypto but I've run in this hidden gem now and wondering if XBY has been on bittrex or Polo yet?
jr. member
Activity: 114
Merit: 1


The new TESTNET wallet (with bugs fixed) has been compiled and another hard reset has just occurred. This means that we must wait for block 122 before transactions can start again and this is about 4 hours away... So, we will be picking things up again after some sleeps.

Thank you all for your patience as we work though this very interesting phase of XTRABYTES development!!

Dave, Borz and the TESTNET Crew!!







Thanks for the updates, CCR. Very exciting times for XTRABYTES!
sr. member
Activity: 602
Merit: 255


The new TESTNET wallet (with bugs fixed) has been compiled and another hard reset has just occurred. This means that we must wait for block 122 before transactions can start again and this is about 4 hours away... So, we will be picking things up again after some sleeps.

Thank you all for your patience as we work though this very interesting phase of XTRABYTES development!!

Dave, Borz and the TESTNET Crew!!





full member
Activity: 173
Merit: 100
has the roadmap been released yet i can't find it googling and i don't want to read the whole thread
i really like this coin tho

Updated roadmap soon to be released!
newbie
Activity: 17
Merit: 0
TESTING FEES - TESTNET EXPANSION

Hello Everyone!

Just getting caught up here after a busy day at my end and noticed Biker had posted some great info about the fees. So, I thought it was important to first of all say that the numbers he is reporting are not to be considered as anything other than test numbers.

What Borz is doing here is actually playing with his scaled fees theory, and was trying some scenarios today. But, the final fees system will be very different and will possibly even have some trust factors involved, which would result in free transactions between friends and things like that. It is also important to note that a security feature was being tested and if a transaction was less that the normal fee, the fee doubled and this is to fight transaction spam of 1 XBY, which in this case would cost the attacker 101 XBY for 1 transaction...

So, there will be different scenarios worked through before our next live wallet update.

Otherwise, as you could see the testing was otherwise very fast and successful today and we did in fact add an additional 7 testers to the TESTNET tonight. We will continue to add people while we work our way up to the full 512 nodes and at that point, some major testing will occur.

Anyone else interested in participating, please be sure to download the latest wallet for your machine at the ANN and then get in touch with @rule144 on Slack for further instructions.


* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
If you want to see the transactions and blocks being mined by the STATIC miners, you can see from the TESTNET explorer:
http://testnet.xtrabytes.global/index.php

Again, keep in mind that we are sorting out the bugs before the PUBLIC test. This is however, our first look at the live tech!!
* * * * * * * * * * * * * * * * * * * * * * * * * * * * *


Thank you all for your patience Smiley

Dave


https://xtrabytes.global/images/XBYtestnetedition2.png


Very exciting update, thank you guys!
member
Activity: 103
Merit: 10

Hi CCR, great news and update. I think that coinmarketcap hasn't updated new logo for view from mobile devices as I still see the old one (worth check).

Thank you Yosir! CMC has our logo and they have updated the website so I can only assume it is a matter of time for them to do the other logos. Let's give them a couple more days and if they still have not updated, I will have our Exchange Manager drop them a note.

Have a great day!!

Dave




Just adding to this CMC give a 7 day turn around on issues, they stick very well within this time-frame but things can end up happening on the 7th day.
sr. member
Activity: 602
Merit: 255

Hi CCR, great news and update. I think that coinmarketcap hasn't updated new logo for view from mobile devices as I still see the old one (worth check).

Thank you Yosir! CMC has our logo and they have updated the website so I can only assume it is a matter of time for them to do the other logos. Let's give them a couple more days and if they still have not updated, I will have our Exchange Manager drop them a note.

Have a great day!!

Dave


full member
Activity: 280
Merit: 101
I love the progress. Great update bikerleszno and CCRevolutions!
sr. member
Activity: 260
Merit: 250
TESTING FEES - TESTNET EXPANSION

Hello Everyone!

Just getting caught up here after a busy day at my end and noticed Biker had posted some great info about the fees. So, I thought it was important to first of all say that the numbers he is reporting are not to be considered as anything other than test numbers.

What Borz is doing here is actually playing with his scaled fees theory, and was trying some scenarios today. But, the final fees system will be very different and will possibly even have some trust factors involved, which would result in free transactions between friends and things like that. It is also important to note that a security feature was being tested and if a transaction was less that the normal fee, the fee doubled and this is to fight transaction spam of 1 XBY, which in this case would cost the attacker 101 XBY for 1 transaction...

So, there will be different scenarios worked through before our next live wallet update.

Otherwise, as you could see the testing was otherwise very fast and successful today and we did in fact add an additional 7 testers to the TESTNET tonight. We will continue to add people while we work our way up to the full 512 nodes and at that point, some major testing will occur.

Anyone else interested in participating, please be sure to download the latest wallet for your machine at the ANN and then get in touch with @rule144 on Slack for further instructions.


* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
If you want to see the transactions and blocks being mined by the STATIC miners, you can see from the TESTNET explorer:
http://testnet.xtrabytes.global/index.php

Again, keep in mind that we are sorting out the bugs before the PUBLIC test. This is however, our first look at the live tech!!
* * * * * * * * * * * * * * * * * * * * * * * * * * * * *


Thank you all for your patience Smiley

Dave





Hi CCR, great news and update. I think that coinmarketcap hasn't updated new logo for view from mobile devices as I still see the old one (worth check).
full member
Activity: 345
Merit: 105
TESTING FEES - TESTNET EXPANSION

Hello Everyone!

Just getting caught up here after a busy day at my end and noticed Biker had posted some great info about the fees. So, I thought it was important to first of all say that the numbers he is reporting are not to be considered as anything other than test numbers.

What Borz is doing here is actually playing with his scaled fees theory, and was trying some scenarios today. But, the final fees system will be very different and will possibly even have some trust factors involved, which would result in free transactions between friends and things like that. It is also important to note that a security feature was being tested and if a transaction was less that the normal fee, the fee doubled and this is to fight transaction spam of 1 XBY, which in this case would cost the attacker 101 XBY for 1 transaction...

So, there will be different scenarios worked through before our next live wallet update.

Otherwise, as you could see the testing was otherwise very fast and successful today and we did in fact add an additional 7 testers to the TESTNET tonight. We will continue to add people while we work our way up to the full 512 nodes and at that point, some major testing will occur.

Anyone else interested in participating, please be sure to download the latest wallet for your machine at the ANN and then get in touch with @rule144 on Slack for further instructions.


* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
If you want to see the transactions and blocks being mined by the STATIC miners, you can see from the TESTNET explorer:
http://testnet.xtrabytes.global/index.php

Again, keep in mind that we are sorting out the bugs before the PUBLIC test. This is however, our first look at the live tech!!
* * * * * * * * * * * * * * * * * * * * * * * * * * * * *


Thank you all for your patience Smiley

Dave





Great idea on the sliding fee scale!
hero member
Activity: 656
Merit: 501
XBY - New Tech Coin (POSIGN) xtrabytes.global
I dont talk about you I talk about @bikerleszno, I suppose you are from Poland, and you just delete 2 of your posts, which one of them was quite emotional, I didnt read second, because only saw that it was created on my computer than I have to do sth and now I read and these 2 posts are missing. Ok, at least you have approved that I have some point in it.
Should quote tho, because it will always stay permament.

I am not emotionally. Problem is with my language. I don`t know many words so I am using that ones I know and later, sometimes people are thinking my behaviour is bad or something but dont worry I am nice but english is not so good like it should be Wink Sometimes better to delete something than trying to explain Cheesy
sr. member
Activity: 602
Merit: 255
TESTING FEES - TESTNET EXPANSION

Hello Everyone!

Just getting caught up here after a busy day at my end and noticed Biker had posted some great info about the fees. So, I thought it was important to first of all say that the numbers he is reporting are not to be considered as anything other than test numbers.

What Borz is doing here is actually playing with his scaled fees theory, and was trying some scenarios today. But, the final fees system will be very different and will possibly even have some trust factors involved, which would result in free transactions between friends and things like that. It is also important to note that a security feature was being tested and if a transaction was less that the normal fee, the fee doubled and this is to fight transaction spam of 1 XBY, which in this case would cost the attacker 101 XBY for 1 transaction...

So, there will be different scenarios worked through before our next live wallet update.

Otherwise, as you could see the testing was otherwise very fast and successful today and we did in fact add an additional 7 testers to the TESTNET tonight. We will continue to add people while we work our way up to the full 512 nodes and at that point, some major testing will occur.

Anyone else interested in participating, please be sure to download the latest wallet for your machine at the ANN and then get in touch with @rule144 on Slack for further instructions.


* * * * * * * * * * * * * * * * * * * * * * * * * * * * *
If you want to see the transactions and blocks being mined by the STATIC miners, you can see from the TESTNET explorer:
http://testnet.xtrabytes.global/index.php

Again, keep in mind that we are sorting out the bugs before the PUBLIC test. This is however, our first look at the live tech!!
* * * * * * * * * * * * * * * * * * * * * * * * * * * * *


Thank you all for your patience Smiley

Dave



hero member
Activity: 1036
Merit: 520
1KoMmKPMG6xaWcqB8CPP3WJ8avRSVRHtP2
has the roadmap been released yet i can't find it googling and i don't want to read the whole thread
i really like this coin tho
Jump to: