Skip to content

Commit

Permalink
Add types (#9)
Browse files Browse the repository at this point in the history
* Update interfaces.ts

* Update package.json
  • Loading branch information
shuhuiluo authored May 11, 2023
1 parent 14d5e75 commit 4db534c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,17 @@ export interface PermitInfo {
deadline: number;
}

export interface CheckPositionPermitRequest {
chainId: number;
tokenId: number;
}

export interface UpdatePositionPermitRequest {
chainId: number;
tokenId: number;
permitInfo: PermitInfo;
}

export interface CreateTriggerRequest {
payload: Payload;
payloadSignature: string;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@aperture_finance/uniswap-v3-automation-sdk",
"description": "SDK for Aperture's Uniswap V3 automation platform",
"version": "0.0.12",
"version": "0.0.13",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
Expand Down

0 comments on commit 4db534c

Please sign in to comment.