mirror of
https://github.com/cerc-io/mars-interface.git
synced 2025-09-16 14:44:05 +00:00
30 lines
431 B
TypeScript
30 lines
431 B
TypeScript
export const DEFAULT_POSITION: Position = {
|
|
status: 'active',
|
|
accountId: '1',
|
|
amounts: {
|
|
primary: 0,
|
|
secondary: 0,
|
|
borrowed: 0,
|
|
lp: {
|
|
amount: '0',
|
|
primary: 0,
|
|
secondary: 0,
|
|
},
|
|
vault: '0',
|
|
},
|
|
values: {
|
|
primary: 0,
|
|
secondary: 0,
|
|
borrowed: 0,
|
|
total: 0,
|
|
net: 0,
|
|
},
|
|
apy: {
|
|
borrow: 5.2,
|
|
net: 7.7,
|
|
total: 19,
|
|
},
|
|
ltv: 0.5,
|
|
currentLeverage: 1,
|
|
}
|