Start Transaction (Token)
Start Transaction (Token)
//Approve the escrow contract
await token.approve(escrow.address, ethers.utils.parseEther("1.01"));
//New transaction
await escrow.startTransaction(
"marketplaceId1", //Marketplace id
"adId1", //Ad id
ethers.utils.parseEther("1"), //ad price
token.address, //Token address
"0x70997970C51812dc3A010C7d01b50e0d17dc79C8" //Seller's address
);Last updated