Skip to content

Instantly share code, notes, and snippets.

@daiki44
Created September 8, 2018 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daiki44/7f009a6c1e80d64033ea061bb5dfb711 to your computer and use it in GitHub Desktop.
Save daiki44/7f009a6c1e80d64033ea061bb5dfb711 to your computer and use it in GitHub Desktop.
【NEM】NEM-sdk を使って特定アドレスへ XEM を送金する ref: https://daiki-sekiguchi.com/2018/09/07/nem-sdk-transactions-send/
// 送金先のアドレス
const toAddress = 'TAHPGS7CKZAERDU5RGHRCGN4DYGXRLQXO5CPNWIP';
// 送金額
const sendAmount = 1;
// 送金の際に指定するメッセージ(空文字でも可)
const sendMsg = 'Hello World!';
// Transactionの作成
const transferTransaction = nem.model.objects.create('transferTransaction')(toAddress, sendAmount, sendMsg);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment