Skip to content

Commit

Permalink
update idl
Browse files Browse the repository at this point in the history
  • Loading branch information
skrrb committed Jan 12, 2024
1 parent 77f1080 commit fa8b1cf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions idl/openbook_v2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3263,7 +3263,7 @@
},
{
"name": "makerFee",
"type": "i64",
"type": "u64",
"index": false
},
{
Expand All @@ -3282,8 +3282,8 @@
"index": false
},
{
"name": "takerFee",
"type": "i64",
"name": "takerFeeCeil",
"type": "u64",
"index": false
},
{
Expand Down
12 changes: 6 additions & 6 deletions ts/client/src/openbook_v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3112,7 +3112,7 @@ export interface OpenbookV2 {
},
{
name: 'makerFee';
type: 'i64';
type: 'u64';
index: false;
},
{
Expand All @@ -3131,8 +3131,8 @@ export interface OpenbookV2 {
index: false;
},
{
name: 'takerFee';
type: 'i64';
name: 'takerFeeCeil';
type: 'u64';
index: false;
},
{
Expand Down Expand Up @@ -6690,7 +6690,7 @@ export const IDL: OpenbookV2 = {
},
{
name: 'makerFee',
type: 'i64',
type: 'u64',
index: false,
},
{
Expand All @@ -6709,8 +6709,8 @@ export const IDL: OpenbookV2 = {
index: false,
},
{
name: 'takerFee',
type: 'i64',
name: 'takerFeeCeil',
type: 'u64',
index: false,
},
{
Expand Down

0 comments on commit fa8b1cf

Please sign in to comment.