UNPKG
flashloan-profit-calculator
Version:
latest (1.0.0)
1.0.0
A library for analyzing flashloan transactions and calculating profits
flashloan-profit-calculator
/
dist
/
src
/
types
/
balance.d.ts
9 lines
(8 loc)
•
192 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
type
TokenBalanceChange
= { [
token
:
string
]: { [
address
:
string
]: {
amount
:
bigint
;
type
:
"TokenTransfer"
|
"Revenue"
|
"Cost"
; }; }; };