Skip to content

Commit

Permalink
fix: use bignumber on max and lim
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelcr committed Jun 12, 2024
1 parent 2cd9200 commit b9b8d32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pg/brc20/brc20-block-cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ export class Brc20BlockCache {
tx_id,
address: operation.deploy.address,
ticker: operation.deploy.tick,
max: operation.deploy.max,
limit: operation.deploy.lim,
max: BigNumber(operation.deploy.max).toString(),
limit: BigNumber(operation.deploy.lim).toString(),
decimals: operation.deploy.dec,
self_mint: operation.deploy.self_mint,
});
Expand Down

0 comments on commit b9b8d32

Please sign in to comment.