|
|
@ -1,4 +1,4 @@ |
|
|
|
import { beginCell, contractAddress, toNano, TonClient, TonClient4, Address, WalletContractV4, internal, fromNano} from "ton"; |
|
|
|
import { beginCell, contractAddress, toNano, TonClient, TonClient4, Address, WalletContractV4, internal, fromNano, Cell} from "ton"; |
|
|
|
import {mnemonicToPrivateKey} from "ton-crypto"; |
|
|
|
import {mnemonicToPrivateKey} from "ton-crypto"; |
|
|
|
import {buildOnchainMetadata} from "./utils/jetton-helpers"; |
|
|
|
import {buildOnchainMetadata} from "./utils/jetton-helpers"; |
|
|
|
import {SampleJetton} from "./output/jetton_SampleJetton"; |
|
|
|
import {SampleJetton} from "./output/jetton_SampleJetton"; |
|
|
@ -18,7 +18,6 @@ import {SampleJetton} from "./output/jetton_SampleJetton"; |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
// Insert your test wallet's 24 words, make sure you have some test Toncoins on its balance. Every deployment spent 0.5 test toncoin.
|
|
|
|
// Insert your test wallet's 24 words, make sure you have some test Toncoins on its balance. Every deployment spent 0.5 test toncoin.
|
|
|
|
let mnemonics = "multiply voice predict admit hockey fringe flat bike napkin child quote piano year cloud bundle lunch...."; |
|
|
|
|
|
|
|
// read more about wallet apps https://ton.org/docs/participate/wallets/apps#tonhub-test-environment
|
|
|
|
// read more about wallet apps https://ton.org/docs/participate/wallets/apps#tonhub-test-environment
|
|
|
|
|
|
|
|
|
|
|
|
let keyPair = await mnemonicToPrivateKey(mnemonics.split(" ")); |
|
|
|
let keyPair = await mnemonicToPrivateKey(mnemonics.split(" ")); |
|
|
@ -39,8 +38,8 @@ import {SampleJetton} from "./output/jetton_SampleJetton"; |
|
|
|
|
|
|
|
|
|
|
|
const jettonParams = { |
|
|
|
const jettonParams = { |
|
|
|
name: "TactJet", |
|
|
|
name: "TactJet", |
|
|
|
description: "My jetton", |
|
|
|
description: "Test tact contract - 4", |
|
|
|
image: "https://www.linkpicture.com/q/download_183.png" // Image url
|
|
|
|
image: "https://ipfs.io/ipfs/QmbPZjC1tuP6ickCCBtoTCQ9gc3RpkbKx7C1LMYQdcLwti" // Image url
|
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// Owner should usually be the deploying wallet's address.
|
|
|
|
// Owner should usually be the deploying wallet's address.
|
|
|
@ -52,14 +51,23 @@ import {SampleJetton} from "./output/jetton_SampleJetton"; |
|
|
|
|
|
|
|
|
|
|
|
// Compute init data for deployment
|
|
|
|
// Compute init data for deployment
|
|
|
|
let init = await SampleJetton.init(owner, content); |
|
|
|
let init = await SampleJetton.init(owner, content); |
|
|
|
|
|
|
|
|
|
|
|
let destination_address = contractAddress(workchain, init); |
|
|
|
let destination_address = contractAddress(workchain, init); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let deployAmount = toNano('0.5'); |
|
|
|
let deployAmount = toNano('0.5'); |
|
|
|
|
|
|
|
let supply = 500; |
|
|
|
|
|
|
|
let amount = BigInt(supply * Math.pow(10, 9)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// send a message on new address contract to deploy it
|
|
|
|
// send a message on new address contract to deploy it
|
|
|
|
let seqno: number = await contract.getSeqno(); |
|
|
|
let seqno: number = await contract.getSeqno(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//TL-B mint#01fb345b amount:int257 = Mint
|
|
|
|
|
|
|
|
let msg = beginCell().storeBuffer(Buffer.from("01fb345b", "hex")).storeInt(amount, 257).endCell(); |
|
|
|
|
|
|
|
|
|
|
|
console.log('🛠️Preparing new outgoing massage from deployment wallet. Seqno = ', seqno); |
|
|
|
console.log('🛠️Preparing new outgoing massage from deployment wallet. Seqno = ', seqno); |
|
|
|
console.log('Current deployment wallet balance = ', fromNano(balance).toString(), '💎TON'); |
|
|
|
console.log('Current deployment wallet balance = ', fromNano(balance).toString(), '💎TON'); |
|
|
|
|
|
|
|
console.log('Totally supply for deployed Token = ', supply, ', amount = ', amount.toString()); |
|
|
|
await contract.sendTransfer({ |
|
|
|
await contract.sendTransfer({ |
|
|
|
seqno, |
|
|
|
seqno, |
|
|
|
secretKey, |
|
|
|
secretKey, |
|
|
@ -70,7 +78,7 @@ import {SampleJetton} from "./output/jetton_SampleJetton"; |
|
|
|
code : init.code, |
|
|
|
code : init.code, |
|
|
|
data : init.data |
|
|
|
data : init.data |
|
|
|
}, |
|
|
|
}, |
|
|
|
body: 'Deploy' |
|
|
|
body: msg |
|
|
|
})] |
|
|
|
})] |
|
|
|
}); |
|
|
|
}); |
|
|
|
console.log('======deployment message sent to ', destination_address, ' ======'); |
|
|
|
console.log('======deployment message sent to ', destination_address, ' ======'); |
|
|
|