本文整理汇总了TypeScript中dpos-offline/dist/es5/liskWallet.LiskWallet.default方法的典型用法代码示例。如果您正苦于以下问题:TypeScript LiskWallet.default方法的具体用法?TypeScript LiskWallet.default怎么用?TypeScript LiskWallet.default使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类dpos-offline/dist/es5/liskWallet.LiskWallet
的用法示例。
在下文中一共展示了LiskWallet.default方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: confirmTransactions
export const createRandomAccountWithFunds = async (howMany: number = 1000, recipientWallet: LiskWallet = createRandomWallet()) => {
const systemModule = initializer.appManager.container.get<ISystemModule>(Symbols.modules.system);
const senderWallet = getRandomDelegateWallet();
const t = new dposOffline.transactions.SendTx();
t.set('amount', howMany);
t.set('fee', systemModule.getFees().fees.send);
t.set('timestamp', 0);
t.set('recipientId', recipientWallet.address);
const tx = senderWallet.signTransaction(t);
await confirmTransactions([tx], true);
return {
delegate: senderWallet,
txID : tx.id,
wallet : recipientWallet,
};
};
示例2:
export const generateAccounts = (howMany: number): LiskWallet[] => {
const toRet = [];
for (let i = 0; i < howMany; i++) {
toRet.push(generateAccount());
}
return toRet;
};
示例3: Array
const keys = new Array(howMany).fill(null).map(() => createRandomWallet());
示例4: generateAccount
export const generateFakeAddress = (): string => {
return generateAccount().address;
};