@argonprotocol/mainchain 1.1.0-rc.6 → 1.1.0-rc.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +89 -1
- package/lib/cli.cjs +521 -282
- package/lib/cli.cjs.map +1 -1
- package/lib/cli.js +521 -282
- package/lib/cli.js.map +1 -1
- package/lib/clis/index.cjs +521 -282
- package/lib/clis/index.cjs.map +1 -1
- package/lib/clis/index.d.cts +2 -0
- package/lib/clis/index.d.ts +2 -0
- package/lib/clis/index.js +521 -282
- package/lib/clis/index.js.map +1 -1
- package/lib/index.cjs +488 -262
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +305 -203
- package/lib/index.d.ts +305 -203
- package/lib/index.js +485 -262
- package/lib/index.js.map +1 -1
- package/package.json +2 -2
package/lib/clis/index.d.cts
CHANGED
|
@@ -102,6 +102,7 @@ declare function bitcoinCli(): Command<[], {}, {}>;
|
|
|
102
102
|
declare function keyringFromFile(opts: {
|
|
103
103
|
filePath: string;
|
|
104
104
|
passphrase?: string;
|
|
105
|
+
passphraseFile?: string;
|
|
105
106
|
}): Promise<KeyringPair>;
|
|
106
107
|
declare function saveKeyringPair(opts: {
|
|
107
108
|
filePath: string;
|
|
@@ -116,6 +117,7 @@ declare function buildCli(): Command<[], {
|
|
|
116
117
|
accountFilePath?: string | undefined;
|
|
117
118
|
accountSuri?: string | undefined;
|
|
118
119
|
accountPassphrase?: string | undefined;
|
|
120
|
+
accountPassphraseFile?: string | undefined;
|
|
119
121
|
subaccounts?: number[] | undefined;
|
|
120
122
|
}, {}>;
|
|
121
123
|
declare function accountsetFromCli(program: Command, proxyForAddress?: string): Promise<Accountset>;
|
package/lib/clis/index.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ declare function bitcoinCli(): Command<[], {}, {}>;
|
|
|
102
102
|
declare function keyringFromFile(opts: {
|
|
103
103
|
filePath: string;
|
|
104
104
|
passphrase?: string;
|
|
105
|
+
passphraseFile?: string;
|
|
105
106
|
}): Promise<KeyringPair>;
|
|
106
107
|
declare function saveKeyringPair(opts: {
|
|
107
108
|
filePath: string;
|
|
@@ -116,6 +117,7 @@ declare function buildCli(): Command<[], {
|
|
|
116
117
|
accountFilePath?: string | undefined;
|
|
117
118
|
accountSuri?: string | undefined;
|
|
118
119
|
accountPassphrase?: string | undefined;
|
|
120
|
+
accountPassphraseFile?: string | undefined;
|
|
119
121
|
subaccounts?: number[] | undefined;
|
|
120
122
|
}, {}>;
|
|
121
123
|
declare function accountsetFromCli(program: Command, proxyForAddress?: string): Promise<Accountset>;
|