log format

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2022-07-14 09:37:11 +02:00
parent db93aeaa32
commit e00f189687
2 changed files with 18 additions and 18 deletions

View File

@ -143,35 +143,37 @@ export class Bank {
toString(): string {
return (
'Bank ' +
'\n token index -' +
'\n token index - ' +
this.tokenIndex +
'\n deposit index -' +
'\n token name - ' +
this.name +
'\n deposit index - ' +
this.depositIndex.toNumber() +
'\n borrow index -' +
'\n borrow index - ' +
this.borrowIndex.toNumber() +
'\n cachedIndexedTotalDeposits -' +
'\n cachedIndexedTotalDeposits - ' +
this.cachedIndexedTotalDeposits.toNumber() +
'\n cachedIndexedTotalBorrows -' +
'\n cachedIndexedTotalBorrows - ' +
this.cachedIndexedTotalBorrows.toNumber() +
'\n maxRate -' +
'\n maxRate - ' +
this.maxRate.toNumber() +
'\n util0 -' +
'\n util0 - ' +
this.util0.toNumber() +
'\n rate0 -' +
'\n rate0 - ' +
this.rate0.toNumber() +
'\n util1 -' +
'\n util1 - ' +
this.util1.toNumber() +
'\n rate1 -' +
'\n rate1 - ' +
this.rate1.toNumber() +
'\n maintAssetWeight -' +
'\n maintAssetWeight - ' +
this.maintAssetWeight.toNumber() +
'\n initAssetWeight -' +
'\n initAssetWeight - ' +
this.initAssetWeight.toNumber() +
'\n maintLiabWeight -' +
'\n maintLiabWeight - ' +
this.maintLiabWeight.toNumber() +
'\n initLiabWeight -' +
'\n initLiabWeight - ' +
this.initLiabWeight.toNumber() +
'\n liquidationFee -' +
'\n liquidationFee - ' +
this.liquidationFee.toNumber()
);
}

View File

@ -154,9 +154,7 @@ async function main() {
// log tokens/banks
for (const bank of await group.banksMap.values()) {
console.log(
`...registered Bank ${bank.name} ${bank.tokenIndex} ${bank.publicKey}, mint ${bank.mint}, oracle ${bank.oracle}`,
);
console.log(`${bank.toString()}`);
}
process.exit();