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 =
3434/**
3535 * Options for the step executor hook
3636 */
37- export interface StepExecutorOptions {
37+ interface StepExecutorOptions {
3838 /** Prepared quote returned by Bridge.prepare */
3939 request : BridgePrepareRequest ;
4040 /** Wallet instance providing getAccount() & sendTransaction */
@@ -78,7 +78,7 @@ interface StepExecutorResult {
7878/**
7979 * Flatten RouteStep[] into a linear list of transactions preserving ordering & indices.
8080 */
81- export function flattenRouteSteps ( steps : RouteStep [ ] ) : FlattenedTx [ ] {
81+ function flattenRouteSteps ( steps : RouteStep [ ] ) : FlattenedTx [ ] {
8282 const out : FlattenedTx [ ] = [ ] ;
8383 steps . forEach ( ( step , stepIdx ) => {
8484 step . transactions ?. forEach ( ( tx , _txIdx ) => {
You can’t perform that action at this time.
0 commit comments