@carrot-protocol/boost-http-client 0.2.15-group-refactor1-dev-fd4d1cc → 0.2.15-group-refactor1-dev-a674ad3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -130,7 +130,7 @@ class Client {
|
|
|
130
130
|
return {
|
|
131
131
|
mint: new anchor_1.web3.PublicKey(b.mint),
|
|
132
132
|
bank: new anchor_1.web3.PublicKey(b.bank),
|
|
133
|
-
tokenYieldApy: Number(b.
|
|
133
|
+
tokenYieldApy: Number(b.tokenYieldApy),
|
|
134
134
|
assetBalance: new anchor_1.BN(b.assetBalance, "hex"),
|
|
135
135
|
assetBalanceUi: Number(b.assetBalanceUi),
|
|
136
136
|
assetValue: Number(b.assetValue),
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -151,7 +151,7 @@ export class Client {
|
|
|
151
151
|
return {
|
|
152
152
|
mint: new web3.PublicKey(b.mint),
|
|
153
153
|
bank: new web3.PublicKey(b.bank),
|
|
154
|
-
tokenYieldApy: Number(b.
|
|
154
|
+
tokenYieldApy: Number(b.tokenYieldApy),
|
|
155
155
|
assetBalance: new BN(b.assetBalance, "hex"),
|
|
156
156
|
assetBalanceUi: Number(b.assetBalanceUi),
|
|
157
157
|
assetValue: Number(b.assetValue),
|