You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 lines
905 B

import { contractAddress, toNano } from "ton";
import { packAdd, SampleTactContract_init } from "./output/sample_SampleTactContract";
import { printAddress, printDeploy, printHeader } from "./utils/print";
import { randomAddress } from "./utils/randomAddress";
(async () => { //need to changes for jetton
// Parameters
// let owner = randomAddress(0, 'some-owner'); // Replace owner with your address
// let packed = packAdd({ $$type: 'Add', amount: 10n }); // Replace if you want another message used
// let init = await SampleTactContract_init(owner);
// let address = contractAddress({ workchain: 0, initialCode: init.code, initialData: init.data });
// let deployAmount = toNano(10);
// let testnet = true;
//
// // Print basics
// printHeader('SampleTactContract');
// printAddress(address);
// printDeploy(init, deployAmount, packed, testnet);
})();