{"version":3,"file":"get-bip44-entropy.mjs","sourceRoot":"","sources":["../../../src/types/methods/get-bip44-entropy.ts"],"names":[],"mappings":"","sourcesContent":["import type { JsonBIP44CoinTypeNode } from '@metamask/key-tree';\n\nimport type { Bip44Entropy } from '../permissions';\n\n/**\n * The request parameters for the `snap_getBip44Entropy` method.\n */\nexport type GetBip44EntropyParams = Bip44Entropy & {\n  /**\n   * The ID of the entropy source to use. If not specified, the primary entropy\n   * source will be used. For a list of available entropy sources, see the\n   * `snap_listEntropySources` method.\n   */\n  source?: string | undefined;\n};\n\n/**\n * The result returned by the `snap_getBip44Entropy` method.\n *\n * @see https://github.com/MetaMask/key-tree#usage\n */\nexport type GetBip44EntropyResult = JsonBIP44CoinTypeNode;\n"]}