From e266b2651bf591dd6e55bf776146ada18ced1778 Mon Sep 17 00:00:00 2001 From: Nolan Le Date: Tue, 25 Apr 2023 07:46:35 +0300 Subject: [PATCH] chore: readme format --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 75dda47..cdfe722 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,13 @@ First of all, installation step: -* With npm +- With npm ``` npm install @nolanle/mixlib ``` -* With yarn +- With yarn ``` yarn add @nolanle/mixlib @@ -23,7 +23,7 @@ yarn add @nolanle/mixlib ## Usages -* Generate Master Key and Mnemonic +- Generate Master Key and Mnemonic ``` import {create, Network} from '@nolanle/mixlib; @@ -36,14 +36,14 @@ const masterKey = await create('Master Key', count); console.log(masterKey.mnemonic); ``` -* Derive master key to accounts +- Derive master key to accounts ``` const network = new Network('Ethereum', 'ETH', 18, 60); const ethAccount = masterKey.derive(network); ``` -* Working with account +- Working with account ``` const address = account.toAddress();