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

added support for execute into wc #1912

Merged
merged 2 commits into from
Jul 20, 2023
Merged
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 packages/gui/src/@types/WalletConnectCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ export type WalletConnectCommandNotification = Omit<WalletConnectCommandBase, 's
service: 'NOTIFICATION';
};

export type WalletConnectCommandTest = Omit<WalletConnectCommandBase, 'service'> & {
service: 'TEST';
response: Object | ((params: Record<string, any>) => Object);
export type WalletConnectCommandExecute = Omit<WalletConnectCommandBase, 'service'> & {
service: 'EXECUTE';
execute: Object | ((params: Record<string, any>) => Object);
};

type WalletConnectCommand = WalletConnectCommandBase | WalletConnectCommandNotification | WalletConnectCommandTest;
type WalletConnectCommand = WalletConnectCommandBase | WalletConnectCommandNotification | WalletConnectCommandExecute;

export default WalletConnectCommand;
9 changes: 4 additions & 5 deletions packages/gui/src/hooks/useWalletConnectCommand.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,14 +207,13 @@ export default function useWalletConnectCommand(options: UseWalletConnectCommand
await waitForWalletSync();
}

if (service === 'TEST' && 'response' in definition) {
const { response } = definition;

const responseValue = typeof response === 'function' ? response(values) : response;
if (service === 'EXECUTE') {
const { execute } = definition;
const result = typeof execute === 'function' ? await execute(values) : execute;

return {
success: true,
...responseValue,
...result,
};
}

Expand Down
Loading