{"version":3,"file":"get-bip32-public-key.mjs","sourceRoot":"","sources":["../../../src/types/methods/get-bip32-public-key.ts"],"names":[],"mappings":"","sourcesContent":["import type { Bip32Entropy } from '../permissions';\n\n/**\n * An object containing the parameters for the `snap_getBip32PublicKey` method.\n */\nexport type GetBip32PublicKeyParams = Bip32Entropy & {\n  /**\n   * Whether to return the compressed public key. Defaults to `false`.\n   */\n  compressed?: boolean;\n\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 public key as hexadecimal string. May be compressed or uncompressed\n * depending on the `compressed` parameter provided in the request parameters.\n */\nexport type GetBip32PublicKeyResult = string;\n"]}