import { deployTONB, deposit, withdraw, getTONB } from "../utils/interactions"; import { wallet_data, client } from '../utils/config'; import { randomAddress, TON } from '../utils/helpers'; import { toNano } from 'ton'; (async () => { let {my_wallet, secretKey} = await wallet_data(); let tonb_addr = await deployTONB(); // await deposit(my_wallet, secretKey, toNano('0.6'), tonb_addr); await withdraw(my_wallet, secretKey, 0.45 * TON(), tonb_addr); })();