Подключение к DevNet
-
- Настроить кошелек https://github.com/smartholdem/smartholdem-wallet/releases
- В настройки > управление сетями > Testnet
добавить dev-seed: https://nodedev.smartholdem.io
или/ Создать новую сеть и добавить dev-seed: https://nodedev.smartholdem.io - сохранить
- может потребоваться перезапуск кошелька
- Переключиться на DevNet/Tesnet в верхнем меню
- Получить адрес D... и фразы
- Получить монеты в https://devfaucet.smartholdem.io/ (транзакция ~3 минуты)
- Обозреватель DEvNet http://devexplorer.smartholdem.io/#/
- При использовании https://github.com/smartholdem/sthjs-wrapper с DevNet в формировании транзакций необходимо указать версию dev-сети в options {version: 0x1e} (для mainnet указывать версию не требуется)
const smartholdemApi = require("sthjs-wrapper"); smartholdemApi.init("dev"); // devnet or main // Сформировать транзакцию let options = { version: 0x1e, //это версия dev-net vendorField: "Comment field (optional)", secondPassphrase: "Sender second passphrase (optional)" }; let tx = smartholdemApi.createTransaction("Sender passphrase", "Address of recipient", "Amount to send in 10^8 (Integer)", options); console.log(tx); // отправить в сеть let transaction = smartholdemApi.sendTransactions([tx], (error, success, response) => { console.log(response); });
- Установка ноды DevNet
git clone -b development https://github.com/smartholdem/smartholdem-node-a.git
далее по инструкции https://github.com/smartholdem/smartholdem-node-a