mirror of
https://github.com/cerc-io/mars-interface.git
synced 2025-07-03 07:35:19 +00:00
33 lines
510 B
TypeScript
33 lines
510 B
TypeScript
export const position: Position = {
|
|
status: 'active',
|
|
accountId: '1',
|
|
amounts: {
|
|
primary: 0,
|
|
secondary: 0,
|
|
borrowedPrimary: 0,
|
|
borrowedSecondary: 0,
|
|
lp: {
|
|
amount: '0',
|
|
primary: 0,
|
|
secondary: 0,
|
|
},
|
|
vault: '0',
|
|
},
|
|
values: {
|
|
primary: 0,
|
|
secondary: 0,
|
|
borrowedPrimary: 0,
|
|
borrowedSecondary: 0,
|
|
total: 0,
|
|
net: 0,
|
|
},
|
|
apy: {
|
|
borrow: 5.2,
|
|
net: 7.7,
|
|
total: 19,
|
|
},
|
|
ltv: 0.5,
|
|
currentLeverage: 1,
|
|
borrowDenom: null,
|
|
}
|