import { deployTONB, deposit, withdraw } from "../utils/interactions"; import { wallet_data } from '../utils/config'; import { randomAddress, TON } from '../utils/helpers'; (async () => { let {my_wallet, secretKey} = await wallet_data(); let tonb_addr = await deployTONB(); await deposit(my_wallet, secretKey, 1 * TON(), tonb_addr); await withdraw(my_wallet, secretKey, 0.5 * TON(), tonb_addr); })();