@broxus/tip4
Version:
Set of ready-to-use tvm nft token contracts following tip4 standard
20 lines (17 loc) • 387 B
text/typescript
import { WalletTypes, toNano } from 'locklift';
export default async (): Promise<void> => {
await locklift.deployments.deployAccounts(
[
{
deploymentName: 'UserWallet',
signerId: '1',
accountSettings: {
type: WalletTypes.WalletV3,
value: toNano(50),
},
},
],
true,
);
};
export const tag = 'user-wallet';