post-order line draw improvements
This commit is contained in:
@@ -133,3 +133,11 @@ export function abiPath(name) {
|
||||
}
|
||||
|
||||
|
||||
export function parseFill(obj) {
|
||||
let [tx, time, filledIn, filledOut, fee] = obj
|
||||
time = new Date(time * 1000)
|
||||
filledIn = BigInt(filledIn)
|
||||
filledOut = BigInt(filledOut)
|
||||
fee = BigInt(fee)
|
||||
return {tx, time, filledIn, filledOut, fee}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user