Skip to content

Commit

Permalink
type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
poly-rodr committed May 1, 2024
1 parent 9d6a425 commit 789a96c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polymarket/clob-client",
"description": "Typescript client for Polymarket's CLOB",
"version": "4.5.2",
"version": "4.5.3",
"contributors": [
{
"name": "Jonathan Amenechi",
Expand Down
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export class ClobClient {
const result = await this.get(`${this.host}${GET_TICK_SIZE}`, {
params: { token_id: tokenID },
});
this.tickSizes[tokenID] = result.minimum_tick_size as TickSize;
this.tickSizes[tokenID] = result.minimum_tick_size.toString() as TickSize;

return this.tickSizes[tokenID];
}
Expand Down

0 comments on commit 789a96c

Please sign in to comment.