New Testnet DeployedsteemCreated with Sketch.

in #testnet5 years ago

new testnet deployed.jpg

Hello Steemians, this is a quick update on the testnet. A new testnet has been deployed with a new Chain ID 0feb08c380aeb483b61a34cccb7271a3a99c47052bea529c4a891622f2c50d75 and is running on branch 20191101-smt-testnet. You can still connect through peer testnet.steemitdev.com:2001.

We’re a bit busy preparing to leave for SteemFest 4 and putting the finishing touches on our presentations. We’ll be opening the conference with a group presentation featuring @elipowell, @vandeberg, @roadscape, and @andrarchy, followed immediately by a Q&A. We will also be giving separate presentations on Smart Media Tokens (@vandeberg and @gerbino) and Hivemind Communities (@roadscape). If you won’t be attending SteemFest be sure to catch the livestreams, and for those attending, we look forward to seeing you there.

The Steemit Team

Sort:  

Please upload livestreams on youtube again. Thanks

Awesome!

If you won’t be attending SteemFest ...

At least I will ... sitting at Dubai airport just now, waiting for the next flight to Bangkok. See you there. :)

see you there.

live stream is gonna be great ---i could not join ..but will obviously check out

Just keep us updated on the live streams please. Even on twitter or anything so we can catch the main presentations.

Wow! I just hope I can be at the steem fest as this is gonna be very interesting apart from meeting with other fellow Steemians, it's a great opportunity to learn more and explore!

Keep us updated. I also hope some regular vlogers will be of great help if they can make a video record and post on dtube or YouTube.

Thanks for sharing this great post 💪❤️

Can we connect to the testnet through the browser?

What changed about this new testnet?

@steemitblog Hi.... sir.... Thanks. testent

please Upvot&Follow ME!

Thank you!!@sahmed123

no need for apologies, as long as you give us update it's fine. good luck ij steemfest

Posted using Partiko Android

Still can not use the API @ testnet.steemdev.com

I understand that's not what it says in the post, but I don't have the ressources to set up my own node just to look at the testnet.

Access to fetch at 'http://testnet.steemdev.com/' from origin 'null' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.

I was told this should be easy to fix on your end.

This is the 3rd time I am commenting on this.
I am using dsteem like this:

<html>
<script src="https://unpkg.com/dsteem@^0.8.0/dist/dsteem.js"></script>
<script type="text/javascript">
var client = new dsteem.Client('http://api.steemit.com');
    client.blockchain.getCurrentBlockNum().then(function (err, response) {
        console.log(err, response);
    });    
var client2 = new dsteem.Client('http://testnet.steemdev.com');
    client2.blockchain.getCurrentBlockNum().then(function (err, response) {
        console.log(err, response);
    });        
</script>
</html>

This is the same code twice, just with different nodes.
api.steemit.com works, testnet.steemdev.com does not work. ( also when I add the port :2001 )

I also tried beem in a similar way (set_shared_steem_instance), actually but also got an error.

.

Well thanks. That works.

crossorigin = "" does not seem to do anything, and this works with either http and https.

<html>
<script src="https://unpkg.com/dsteem@^0.8.0/dist/dsteem.js"></script>
<script type="text/javascript">
var client2 = new dsteem.Client('http://testnet.steemitdev.com');
  client2.call('condenser_api', 'get_dynamic_global_properties'
               ).then(function(err, response){
                   console.log(err, response);
   });       
</script>
</html>

The above works fine.

So I assume condenser works, but app base does not ?

that @0.8.0 is just an artifact - I copied those lines from somewhere.
I am not very familiar with dsteem or JS in general, either.

How do you get beem to work, then ?

from beem.blockchain import Blockchain
from beem import Steem
from beem.instance import set_shared_steem_instance

blockchain = Blockchain()
print(blockchain.get_current_block_num())

testnet = Steem(node=["https://testnet.steemdev.com:2001"])
set_shared_steem_instance(testnet)

blockchain2 = Blockchain()
print(blockchain2.get_current_block_num())

This does not work either, I tried variations of the url with port and without and http https ...

Coin Marketplace

STEEM 0.30
TRX 0.12
JST 0.033
BTC 63626.14
ETH 3107.70
USDT 1.00
SBD 3.87