televerse-dao-typechain-types 1.0.8-alpha.18 → 1.0.8-alpha.19

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "televerse-dao-typechain-types",
3
3
  "sourceType": "commonjs",
4
- "version": "1.0.8-alpha.18",
4
+ "version": "1.0.8-alpha.19",
5
5
  "description": "The typechain types for the Televerse DAO smart contracts.",
6
6
  "license": "MIT",
7
7
  "files": [
@@ -22,11 +22,22 @@ export interface NetworkChainConfig {
22
22
  rpcUrls?: string[];
23
23
  blockExplorerUrls?: string[];
24
24
  }
25
+ export type DID = string;
26
+ export interface GetComputedAccountParams {
27
+ did: DID;
28
+ }
29
+ export interface GetDerivedPrivateKeyRequestParams {
30
+ addressIndex?: number;
31
+ }
32
+ export interface MnemonicParams {
33
+ mnemonic: string[];
34
+ }
25
35
  export interface SetCurrentAccountRequestParams {
26
36
  account: string;
27
37
  }
28
38
  export interface DecryptJweDidCommMessageParams {
29
39
  message: string;
40
+ did: DID;
30
41
  }
31
42
  export interface DecryptJweDidCommMessageListParams {
32
43
  message: string[];