{"version":3,"file":"types.cjs","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Represents the base assets needed to display and identify a wallet.\n *\n * @type BaseProviderInfo\n * @property uuid - A locally unique identifier for the wallet. MUST be a v4 UUID.\n * @property name - The name of the wallet.\n * @property icon - The icon for the wallet. MUST be data URI.\n * @property rdns - The reverse syntax domain name identifier for the wallet.\n */\nexport type BaseProviderInfo = {\n  uuid: string;\n  name: string;\n  icon: string;\n  rdns: string;\n};\n"]}