Skip to content

Commit

Permalink
Add new ExecuteArgsResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
tifrel committed Feb 27, 2024
1 parent 95f5b20 commit 23917c7
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions packages/sdk/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -468,8 +468,23 @@ export interface FtDepositStorageArgsResponse {
account_id: string;
}

export type ExecuteArgsResponse = BatchChangeMintersArgsResponse | TransferArgsResponse | ListArgsResponse | MintArgsV1Response |
MinterArgsResponse | DeployContractArgsResponse | DelistMultipleArgsResponse | BuyArgsResponse | BuyArgsFtResponse | BurnArgsResponse | TransferContractOwnershipArgsResponse
| ExecuteExtraArgsResponse | FtTransferArgsResponse | Record<string, unknown>;
export type ExecuteArgsResponse = TransferArgsResponse
| ListArgsResponse
| MintArgsV1Response
| MinterArgsResponse
| DeployContractArgsResponse
| DelistMultipleArgsResponse
| BuyArgsResponse
| BuyArgsFtResponse
| BurnArgsResponse
| TransferContractOwnershipArgsResponse
| ExecuteExtraArgsResponse
| FtTransferArgsResponse
| CreateMetadataArgsResponse
| MintOnMetadataArgsResponse
| UpdateMetadataArgsResponse
| LockMetadataArgsResponse
| BatchChangeMintersArgsResponse
| Record<string, unknown>;

export type FinalExecutionOutcome = FEO;

0 comments on commit 23917c7

Please sign in to comment.