Skip to content

Commit 93cacd9

Browse files
committed
bridging types cleanup
1 parent 8c086ef commit 93cacd9

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

src/types/actions.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -360,12 +360,8 @@ export type BridgeAction = {
360360
* Optional callback actions bundle to execute on the destination chain.
361361
* The callback bundle MUST start with a balance action */
362362
callback?: BundleAction[];
363-
/** Additional value passed to the callback (in addition to bridge token) */
363+
/** Additional native token value passed to the callback (in addition to bridge token) */
364364
callbackValue?: string;
365-
/** Optional callback execution gas costs */
366-
callbackGasLimit?: string;
367-
/** Optional fee to pay in native asset */
368-
bridgeFee?: string;
369365
};
370366
};
371367

src/types/types.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,6 @@ export type RouteParams = {
8787
toEoa?: boolean;
8888
/** Referral code that will be included in an on-chain event */
8989
referralCode?: string;
90-
/** Ethereum address of the receiver of any dust tokens */
91-
refundReceiver?: Address;
9290
};
9391

9492
/**
@@ -442,8 +440,6 @@ export type BundleParams = {
442440
referralCode?: string;
443441
/** A list of standards to be ignored from consideration */
444442
ignoreStandards?: string[] | null;
445-
/** Ethereum address of the receiver of any dust tokens */
446-
refundReceiver?: Address;
447443
};
448444

449445
/**

0 commit comments

Comments
 (0)