| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- import {
- Address,
- beginCell,
- Cell,
- Contract,
- contractAddress,
- ContractProvider,
- Sender,
- SendMode,
- } from "@ton/core";
- export type MainConfig = {};
- export function mainConfigToCell(config: MainConfig): Cell {
- return beginCell().endCell();
- }
- export class Main implements Contract {
- constructor(
- readonly address: Address,
- readonly init?: { code: Cell; data: Cell }
- ) {}
- static createFromAddress(address: Address) {
- return new Main(address);
- }
- static createFromConfig(config: MainConfig, code: Cell, workchain = 0) {
- const data = mainConfigToCell(config);
- const init = { code, data };
- return new Main(contractAddress(workchain, init), init);
- }
- async sendDeploy(provider: ContractProvider, via: Sender, value: bigint) {
- await provider.internal(via, {
- value,
- sendMode: SendMode.PAY_GAS_SEPARATELY,
- body: beginCell().endCell(),
- });
- }
- }
|