Utils
Methods
name | type | Parameters Description | response |
---|---|---|---|
GenerateEd25519KeyPair | function | none | Promise: KeyPairsType |
DownloadKeyPair | function | 1.text: string 2.filename: string | none |
GenerateEd25519KeyPair
import { GenerateEd25519KeyPair } from '@web3mq/client';
const keys = await GenerateEd25519KeyPair();
DownloadKeyPair
<button
onClick={() => {
DownloadKeyPair('text', 'filename');
}}>
DownloadKeyPair
</button>