Skip to content
Merged
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions packages/snaps-sdk/src/types/methods/methods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ import type {
GetClientStatusParams,
GetClientStatusResult,
} from './get-client-status';
import type {
GetCurrencyRateParams,
GetCurrencyRateResult,
} from './get-currency-rate';
import type { GetEntropyParams, GetEntropyResult } from './get-entropy';
import type { GetFileParams, GetFileResult } from './get-file';
import type {
Expand Down Expand Up @@ -65,6 +69,7 @@ export type SnapMethods = {
snap_getBip44Entropy: [GetBip44EntropyParams, GetBip44EntropyResult];
snap_getClientStatus: [GetClientStatusParams, GetClientStatusResult];
snap_getEntropy: [GetEntropyParams, GetEntropyResult];
snap_getCurrencyRate: [GetCurrencyRateParams, GetCurrencyRateResult];
snap_getFile: [GetFileParams, GetFileResult];
snap_getLocale: [GetLocaleParams, GetLocaleResult];
snap_getPreferences: [GetPreferencesParams, GetPreferencesResult];
Expand Down