my code working but not deploy . can you helpme ? why
async function test() {
const provider = new Provider('https://node-beta-2.fuel.network/graphql');
const wallet = Wallet.fromPrivateKey(( process.env.key as string),provider); // private key with coins
//const wallet = await generateTestWallet(provider, [[5_000_000, NativeAssetId]]);
console.log("address", wallet.address.toString());
console.log("private key", wallet.privateKey);
console.log(wallet);
console.log(provider);
console.log(1);
const byteCode = readFileSync(
join(__dirname, './../bin.bin')
);
console.log(2);
const contract = await new ContractFactory(byteCode, abi, wallet);
const contracta = await contract.deployContract();
console.log(contracta.id);
}