Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add useGasless option #300

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 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 @@ -2100,6 +2101,7 @@ export type ParameterWithValueList = ParameterWithValue[] | ParameterWithValueLi
interface EVMTokenCreateParamsDto {
contractId: string;
deployFunctionParams?: Array<ParameterWithValue>;
useGasless?: boolean;
phanigovindaraju marked this conversation as resolved.
Show resolved Hide resolved
}

export interface ReadCallFunctionDto {
Expand All @@ -2113,6 +2115,7 @@ export interface WriteCallFunctionDto {
feeLevel?: FeeLevel;
phanigovindaraju marked this conversation as resolved.
Show resolved Hide resolved
note?: string;
externalTxId?: string;
useGasless?: boolean;
}

export enum SmartTransfersTicketDirection {
Expand Down