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