@dynamic-labs/sdk-api 0.0.240 → 0.0.242

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/sdk-api",
3
- "version": "0.0.240",
3
+ "version": "0.0.242",
4
4
  "author": "Dynamic Labs",
5
5
  "license": "Apache-2.0",
6
6
  "publishConfig": {
@@ -82,35 +82,35 @@ export interface InternalUserFields {
82
82
  */
83
83
  username?: string | null;
84
84
  /**
85
- *
85
+ * BTC wallet address
86
86
  * @type {string}
87
87
  * @memberof InternalUserFields
88
88
  */
89
- btcWallet?: string;
89
+ btcWallet?: string | null;
90
90
  /**
91
- *
91
+ * KDA wallet address
92
92
  * @type {string}
93
93
  * @memberof InternalUserFields
94
94
  */
95
- kdaWallet?: string;
95
+ kdaWallet?: string | null;
96
96
  /**
97
- *
97
+ * LTC or DOGE wallet address
98
98
  * @type {string}
99
99
  * @memberof InternalUserFields
100
100
  */
101
- ltcWallet?: string;
101
+ ltcWallet?: string | null;
102
102
  /**
103
- *
103
+ * CKB wallet address
104
104
  * @type {string}
105
105
  * @memberof InternalUserFields
106
106
  */
107
- ckbWallet?: string;
107
+ ckbWallet?: string | null;
108
108
  /**
109
- *
109
+ * KAS wallet address
110
110
  * @type {string}
111
111
  * @memberof InternalUserFields
112
112
  */
113
- kasWallet?: string;
113
+ kasWallet?: string | null;
114
114
  /**
115
115
  *
116
116
  * @type {boolean}
@@ -84,7 +84,7 @@ export interface NetworkConfiguration {
84
84
  */
85
85
  rpcUrls: Array<string>;
86
86
  /**
87
- *
87
+ * Contains the client private RPC urls
88
88
  * @type {Array<string>}
89
89
  * @memberof NetworkConfiguration
90
90
  */
@@ -94,35 +94,35 @@ export interface UserFields {
94
94
  */
95
95
  metadata?: object;
96
96
  /**
97
- *
97
+ * BTC wallet address
98
98
  * @type {string}
99
99
  * @memberof UserFields
100
100
  */
101
- btcWallet?: string;
101
+ btcWallet?: string | null;
102
102
  /**
103
- *
103
+ * KDA wallet address
104
104
  * @type {string}
105
105
  * @memberof UserFields
106
106
  */
107
- kdaWallet?: string;
107
+ kdaWallet?: string | null;
108
108
  /**
109
- *
109
+ * LTC or DOGE wallet address
110
110
  * @type {string}
111
111
  * @memberof UserFields
112
112
  */
113
- ltcWallet?: string;
113
+ ltcWallet?: string | null;
114
114
  /**
115
- *
115
+ * CKB wallet address
116
116
  * @type {string}
117
117
  * @memberof UserFields
118
118
  */
119
- ckbWallet?: string;
119
+ ckbWallet?: string | null;
120
120
  /**
121
- *
121
+ * KAS wallet address
122
122
  * @type {string}
123
123
  * @memberof UserFields
124
124
  */
125
- kasWallet?: string;
125
+ kasWallet?: string | null;
126
126
  /**
127
127
  *
128
128
  * @type {boolean}