Skip to content

Commit

Permalink
add useGasless option (#300)
Browse files Browse the repository at this point in the history
* add useGasless option

* add fee option to ReadCallFunctionDto
  • Loading branch information
m-awais-ahmad authored Nov 3, 2024
1 parent 21c5ee5 commit 095a798
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1820,6 +1820,7 @@ export interface ContractDeployRequest {
deployFunctionParams?: object[];
fee?: string;
feeLevel?: FeeLevel;
useGasless?: boolean;
}

export interface SupportedBlockchain {
Expand Down Expand Up @@ -2040,6 +2041,7 @@ export interface IssueTokenRequest {
displayName?: string;
fee?: string;
feeLevel?: FeeLevel;
useGasless?: boolean;
}

export interface JobCreatedResponse {
Expand Down Expand Up @@ -2111,8 +2113,10 @@ export interface WriteCallFunctionDto {
abiFunction: AbiFunction;
amount?: string;
feeLevel?: FeeLevel;
fee?: string;
note?: string;
externalTxId?: string;
useGasless?: boolean;
}

export enum SmartTransfersTicketDirection {
Expand Down

0 comments on commit 095a798

Please sign in to comment.