Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 4 additions & 4 deletions src/scripting/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,19 +113,19 @@ import {
import {
schema as deployNewChainSchema,
execute as deployNewChainExecute,
} from './examples/deployNewChain';
} from './workflows/deployNewChain';
import {
schema as transferOwnershipSchema,
execute as transferOwnershipExecute,
} from './examples/transferOwnership';
} from './workflows/transferOwnership';
import {
schema as initializeTokenBridgeSchema,
execute as initializeTokenBridgeExecute,
} from './examples/initializeTokenBridge';
} from './workflows/initializeTokenBridge';
import {
schema as deployFullChainSchema,
execute as deployFullChainExecute,
} from './examples/deployFullChain';
} from './workflows/deployFullChain';

/**
* A scripting entry point: one schema + function pair exposed both as a CLI
Expand Down
Loading