-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsample.ts
32 lines (26 loc) · 1022 Bytes
/
sample.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { NetworkProvider } from '@ton/blueprint';
import { comment, toNano } from '@ton/core';
import { JettonMasterTemplate } from '../build/Sample/tact_JettonMasterTemplate';
import { JettonWalletTemplate } from '../build/Sample/tact_JettonWalletTemplate';
import { loadTep64TokenData } from '../build/Sample/tact_Sample';
import { randomInt } from './utils';
import { SampleMaster } from '../build/Sample/tact_SampleMaster';
export async function run(provider: NetworkProvider): Promise<void> {
const admin = provider.sender().address!!;
const sampleMasterContract = await provider.open(await SampleMaster.fromInit(
admin,
))
// deploy sample master contract
await sampleMasterContract.send(
provider.sender(),
{
value: toNano("1"),
bounce: false,
},
{
$$type: "Deploy",
queryId: BigInt(Math.floor(Date.now() / 1000)),
}
)
await provider.waitForDeploy(sampleMasterContract.address, 50);
}