{"version":3,"file":"get-bip32-entropy.mjs","sourceRoot":"","sources":["../../../src/types/methods/get-bip32-entropy.ts"],"names":[],"mappings":"","sourcesContent":["import type { JsonSLIP10Node } from '@metamask/key-tree';\n\nimport type { Bip32Entropy } from '../permissions';\n\n/**\n * An object containing the parameters for the `snap_getBip32Entropy` method.\n */\nexport type GetBip32EntropyParams = Bip32Entropy & {\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 * A JSON-serializable SLIP-10 node containing the requested BIP-32 entropy.\n */\nexport type GetBip32EntropyResult = JsonSLIP10Node;\n"]}