You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: config.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ nav_order: 2
21
21
22
22
|Key|Description|Type|Default Value|
23
23
|---|-----------|----|-------------|
24
-
|chainId|Optionally set the Chain ID of the blockchain. Otherwise the Network ID will be queried, and used as the Chain ID in signind|number|`-1`
24
+
|chainId|Optionally set the Chain ID of the blockchain. Otherwise the Network ID will be queried, and used as the Chain ID in signing|number|`-1`
25
25
|connectionTimeout|The maximum amount of time that a connection is allowed to remain with no data transmitted|[`time.Duration`](https://pkg.go.dev/time#Duration)|`30s`
26
26
|expectContinueTimeout|See [ExpectContinueTimeout in the Go docs](https://pkg.go.dev/net/http#Transport)|[`time.Duration`](https://pkg.go.dev/time#Duration)|`1s`
27
27
|headers|Adds custom headers to HTTP requests|`map[string]string`|`<nil>`
@@ -80,6 +80,7 @@ nav_order: 2
80
80
|Key|Description|Type|Default Value|
81
81
|---|-----------|----|-------------|
82
82
|defaultPasswordFile|Optional default password file to use, if one is not specified individually for the key (via metadata, or file extension)|string|`<nil>`
83
+
|disableListener|Disable the filesystem listener that automatically detects the creation of new keystore files|boolean|`<nil>`
83
84
|enabled|Whether the Keystore V3 filesystem wallet is enabled|boolean|`true`
84
85
|path|Path on the filesystem where the metadata files (and/or key files) are located|string|`<nil>`
85
86
|signerCacheSize|Maximum of signing keys to hold in memory|number|`250`
@@ -90,8 +91,11 @@ nav_order: 2
90
91
|Key|Description|Type|Default Value|
91
92
|---|-----------|----|-------------|
92
93
|passwordExt|Optional to use to look up password files, that sit next to the key files directly. Alternative to metadata when you have a password per keystore|string|`<nil>`
93
-
|primaryExt|Extension for the primary file to look up for an address string (can be key file directly, or metadata file)|string|`<nil>`
94
-
|with0xPrefix|When true filenames will be resolved with an 0x prefix|boolean|`<nil>`
94
+
|passwordPath|Optional directory in which to look for the password files, when passwordExt is configured. Default is the wallet directory|string|`<nil>`
95
+
|passwordTrimSpace|Whether to trim leading/trailing whitespace (such as a newline) from the password when loaded from file|boolean|`true`
96
+
|primaryExt|Extension for key/metadata files named by <ADDRESS>.<EXT>|string|`<nil>`
97
+
|primaryMatchRegex|Regular expression run against key/metadata filenames to extract the address (takes precedence over primaryExt)|regexp|`<nil>`
98
+
|with0xPrefix|When true and passwordExt is used, password filenames will be generated with an 0x prefix|boolean|`<nil>`
0 commit comments