Create a new Symbol account to start sending and receiving transactions.
2. Enter your profile information, including your profile name, network type and password. Be sure to select the correct network type for your desired purpose. Once you have filled out the page with the appropriate information, click “Next”.
3. On the next page, the Desktop Wallet uses the movement of your mouse cursor to generate a random mnemonic passphrase for your wallet. Shift your mouse around the screen until the progress bar reaches 100% and the application automatically moves you to the next page.
To create an account, open a new file and run the following code snippet. Be sure to select the correct network type for your desired purpose.
const account = Account.generateNewAccount(NetworkType.TEST_NET);
console.log('Your new account address is:', account.address.pretty(),
'and its private key', account.privateKey);
const account = symbol_sdk_1.Account.generateNewAccount(symbol_sdk_1.NetworkType.TEST_NET);
console.log('Your new account address is:', account.address.pretty(), 'and its private key', account.privateKey);
final Account account = Account.generateNewAccount(NetworkType.TEST_NET);
System.out.printf("Your new account address is: %s and its private key: %s",
account.getAddress().plain(), account.getPrivateKey());
If you already have a private key, you can use it to define a new Account
object.
// replace with private key
const privateKey = '0000000000000000000000000000000000000000000000000000000000000000';
const account = Account.createFromPrivateKey(privateKey, NetworkType.TEST_NET);
console.log('Your account address is:',
account.address.pretty(), 'and its private key', account.privateKey);
// replace with private key
const privateKey = '0000000000000000000000000000000000000000000000000000000000000000';
const account = symbol_sdk_1.Account.createFromPrivateKey(privateKey, symbol_sdk_1.NetworkType.TEST_NET);
console.log('Your account address is:', account.address.pretty(), 'and its private key', account.privateKey);
// Replace with a private key
final String privateKey = "0000000000000000000000000000000000000000000000000000000000000000";
final Account account = Account.createFromPrivateKey(privateKey, NetworkType.TEST_NET);
System.out.printf("Your account address is: %s and its private key: %s",
account.getAddress().plain(), account.getPrivateKey());
Open a terminal window and run the following command to create a new account.
symbol-cli account generate --network TEST_NET
Did you find what you were looking for? Give us your feedback.