本文整理汇总了TypeScript中nem-library.PublicAccount类的典型用法代码示例。如果您正苦于以下问题:TypeScript PublicAccount类的具体用法?TypeScript PublicAccount怎么用?TypeScript PublicAccount使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了PublicAccount类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it("should return 10 if it's more than 10 xem are received", () => {
let transaction = TransferTransaction.create(
TimeWindow.createWithDeadline(),
new Address("TDM3DO-ZM5WJ3-ZRBPSM-YRU6JS-WKUCAH-5VIPOF-4W7K"),
new XEM(22),
EmptyMessage
);
transaction.signer = PublicAccount.createWithPublicKey("0414fe7647ec008e533aac98a4bf1c5fbf1d236c75b81fdadf1f5d1042fdd2ff");
let payoutTransaction = ICOPayment(transaction);
expect(payoutTransaction.mosaics()[0].quantity).to.be.equal(10);
});
示例2: before
before(() => {
NEMLibrary.bootstrap(NetworkTypes.TEST_NET);
publicAccount = PublicAccount.createWithPublicKey("0414fe7647ec008e533aac98a4bf1c5fbf1d236c75b81fdadf1f5d1042fdd2ff");
transferTransaction = TransferTransaction.create(
TimeWindow.createWithDeadline(),
new Address("TDM3DO-ZM5WJ3-ZRBPSM-YRU6JS-WKUCAH-5VIPOF-4W7K"),
new XEM(5),
EmptyMessage
);
importanceTransaction = ImportanceTransferTransaction.create(
TimeWindow.createWithDeadline(),
ImportanceMode.Activate,
publicAccount
);
});