File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/thirdweb/src/react/core/hooks Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export type CompletedStatusResult =
34
34
/**
35
35
* Options for the step executor hook
36
36
*/
37
- export interface StepExecutorOptions {
37
+ interface StepExecutorOptions {
38
38
/** Prepared quote returned by Bridge.prepare */
39
39
request : BridgePrepareRequest ;
40
40
/** Wallet instance providing getAccount() & sendTransaction */
@@ -78,7 +78,7 @@ interface StepExecutorResult {
78
78
/**
79
79
* Flatten RouteStep[] into a linear list of transactions preserving ordering & indices.
80
80
*/
81
- export function flattenRouteSteps ( steps : RouteStep [ ] ) : FlattenedTx [ ] {
81
+ function flattenRouteSteps ( steps : RouteStep [ ] ) : FlattenedTx [ ] {
82
82
const out : FlattenedTx [ ] = [ ] ;
83
83
steps . forEach ( ( step , stepIdx ) => {
84
84
step . transactions ?. forEach ( ( tx , _txIdx ) => {
You can’t perform that action at this time.
0 commit comments