Start Transaction (ETH)
Start Transaction (Ether)
//New transaction
await escrow.startTransaction(
"marketplaceId1", //Marketplace id
"adId2", //Ad id
ethers.utils.parseEther("2"), //Ad price
"0x0000000000000000000000000000000000000000", //ETH address
"0x70997970C51812dc3A010C7d01b50e0d17dc79C8", //Seller's address
{
value: ethers.utils.parseEther("2.04"), //Price+fees in ETH
}
);Last updated