Commit 5af9b7b2 authored by Matthew Slipper's avatar Matthew Slipper

lint

parent 06da1613
......@@ -278,10 +278,14 @@ export const getDeploymentAddress = async (
}
export const jsonifyTransaction = (tx: ethers.PopulatedTransaction): string => {
return JSON.stringify({
return JSON.stringify(
{
to: tx.to,
data: tx.data,
value: tx.value,
chainId: tx.chainId,
}, null, 2)
},
null,
2
)
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment