Skip to content

Commit

Permalink
Made Readable.
Browse files Browse the repository at this point in the history
  • Loading branch information
br0wnD3v committed Jan 21, 2024
1 parent 1fef301 commit 1b29f1b
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/interact.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,11 @@ txn = await Mina.transaction(deployer, () => {
await txn.prove();
await txn.sign([deployerPK]).send();

console.log('MINA / ETH :', swap.minaToEthExchange.get());
console.log('ETH / MINA :', swap.ethToMinaExchange.get());
console.log(
'MINA / ETH :',
Number(swap.minaToEthExchange.get().toString()) / 10000000000
);
console.log(
'ETH / MINA :',
Number(swap.ethToMinaExchange.get().toString()) / 10000000000
);

0 comments on commit 1b29f1b

Please sign in to comment.