Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shamsartem committed Jan 6, 2025
1 parent d6a6e6f commit 3fdb2aa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/cli/package/src/lib/chain/offer/offer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ import {
import { getOffers } from "../../gql/gql.js";
import { setTryTimeout } from "../../helpers/setTryTimeout.js";
import { stringifyUnknown } from "../../helpers/stringifyUnknown.js";
import { numToStr } from "../../helpers/typesafeStringify.js";
import { bigintToStr, numToStr } from "../../helpers/typesafeStringify.js";
import {
commaSepStrToArr,
splitErrorsAndResults,
Expand Down Expand Up @@ -604,7 +604,7 @@ async function formatOfferInfo(
({ resourceId, resourcePrice }) => {
return {
"Resource ID": resourceId,
Price: resourcePrice,
Price: bigintToStr(resourcePrice),
};
},
),
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package/src/lib/chain/offer/updateOffers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ async function createResourceSupplyUpdateTx(

const { supplyString: onChainSupplyString } = await resourceSupply(
resourceType,
configuredResource.supply,
configuredResource.supply / resourceMultiplier,
);

const { supply, supplyString } = await resourceSupply(
Expand Down

0 comments on commit 3fdb2aa

Please sign in to comment.