@metamask/providers
Version:
A JavaScript Ethereum provider that connects to the wallet over a stream
16 lines • 520 B
text/typescript
/**
* Represents the base assets needed to display and identify a wallet.
*
* @type BaseProviderInfo
* @property uuid - A locally unique identifier for the wallet. MUST be a v4 UUID.
* @property name - The name of the wallet.
* @property icon - The icon for the wallet. MUST be data URI.
* @property rdns - The reverse syntax domain name identifier for the wallet.
*/
export type BaseProviderInfo = {
uuid: string;
name: string;
icon: string;
rdns: string;
};
//# sourceMappingURL=types.d.mts.map