aboutsummaryrefslogtreecommitdiffstats
path: root/packages/subproviders
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-04-18 14:22:20 +0800
committerFabio Berger <me@fabioberger.com>2018-04-18 14:22:20 +0800
commit64c5c5eb409683d152744a440735ff548fe57ead (patch)
tree49cde91246005830566048f7f8bab0bcdbe7ea0a /packages/subproviders
parent7a8edb5018acaf7aaf49ebefd8b3afec713a19eb (diff)
downloaddexon-0x-contracts-64c5c5eb409683d152744a440735ff548fe57ead.tar
dexon-0x-contracts-64c5c5eb409683d152744a440735ff548fe57ead.tar.gz
dexon-0x-contracts-64c5c5eb409683d152744a440735ff548fe57ead.tar.bz2
dexon-0x-contracts-64c5c5eb409683d152744a440735ff548fe57ead.tar.lz
dexon-0x-contracts-64c5c5eb409683d152744a440735ff548fe57ead.tar.xz
dexon-0x-contracts-64c5c5eb409683d152744a440735ff548fe57ead.tar.zst
dexon-0x-contracts-64c5c5eb409683d152744a440735ff548fe57ead.zip
Fix comments
Diffstat (limited to 'packages/subproviders')
-rw-r--r--packages/subproviders/src/types.ts9
1 files changed, 5 insertions, 4 deletions
diff --git a/packages/subproviders/src/types.ts b/packages/subproviders/src/types.ts
index 74ecec23b..30a3b4a4e 100644
--- a/packages/subproviders/src/types.ts
+++ b/packages/subproviders/src/types.ts
@@ -6,7 +6,8 @@ export interface LedgerCommunicationClient {
close: () => Promise<void>;
}
-/*
+/**
+ * Elliptic Curve signature
* The LedgerEthereumClient sends Ethereum-specific requests to the Ledger Nano S
* It uses an internal LedgerCommunicationClient to relay these requests. Currently
* NodeJs and Browser communication are supported.
@@ -32,7 +33,7 @@ export interface ECSignatureString {
export type LedgerEthereumClientFactoryAsync = () => Promise<LedgerEthereumClient>;
-/*
+/**
* networkId: The ethereum networkId to set as the chainId from EIP155
* ledgerConnectionType: Environment in which you wish to connect to Ledger (nodejs or browser)
* derivationPath: Initial derivation path to use e.g 44'/60'/0'
@@ -45,7 +46,7 @@ export interface LedgerSubproviderConfigs {
accountFetchingConfigs?: AccountFetchingConfigs;
}
-/*
+/**
* addressSearchLimit: The maximum number of addresses to search through, defaults to 1000
* numAddressesToReturn: Number of addresses to return from 'eth_accounts' call
* shouldAskForOnDeviceConfirmation: Whether you wish to prompt the user on their Ledger
@@ -57,7 +58,7 @@ export interface AccountFetchingConfigs {
shouldAskForOnDeviceConfirmation?: boolean;
}
-/*
+/**
* mnemonic: The string mnemonic seed
* addressSearchLimit: The maximum number of addresses to search through, defaults to 1000
* baseDerivationPath: The base derivation path (e.g 44'/60'/0'/0)