Developer's
Portal
- < Ecosystem tools and libraries />
- < Ready solutions and cases />
- < Documentation and support />
0 Market cap
mln+ Transactions
~0s Block delay
Web-based products, libraries and plugins that
make it easy and simple to work with the Waves blockchain
Web-based products, libraries and plugins that make it easy
and simple to work with the Waves blockchain
package com.wavesplatform.wavesj;
import com.wavesplatform.transactions.account.Address;
import com.wavesplatform.wavesj.exceptions.NodeException;
import java.io.IOException;
public class Example {
public static void main(String[] args) throws NodeException, IOException {
// Creating a Node instance
Node node = new Node(Profile.TESTNET);
// Creating an Address from base 58 string format. Getting balance by the address
System.out.println("Balance: " + node.getBalance(Address.as("3Mx3zmXrMcLFCafMuPtXAzR4ZPVeZYb6qLz")));
}
}
Use plugins to create your first program
(smart contract) in your IDE
Sections of documentation and lessons will allow you to quickly dive into working with the blockchain using examples