@oceanprotocol/lib 1.0.0-next.34 → 1.0.0-next.35
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/CHANGELOG.md +7 -0
- package/dist/lib.js +1 -1
- package/dist/lib.js.map +1 -1
- package/dist/lib.modern.js +1 -1
- package/dist/lib.modern.js.map +1 -1
- package/dist/lib.module.js +1 -1
- package/dist/lib.module.js.map +1 -1
- package/dist/lib.umd.js +1 -1
- package/dist/lib.umd.js.map +1 -1
- package/dist/src/provider/Provider.d.ts +1 -1
- package/package.json +1 -1
|
@@ -34,7 +34,7 @@ export declare class Provider {
|
|
|
34
34
|
* @return {Promise<string>} urlDetails
|
|
35
35
|
*/
|
|
36
36
|
getNonce(providerUri: string, consumerAddress: string, signal?: AbortSignal, providerEndpoints?: any, serviceEndpoints?: ServiceEndpoint[]): Promise<string>;
|
|
37
|
-
signProviderRequest(web3: Web3, accountId: string, message: string): Promise<string>;
|
|
37
|
+
signProviderRequest(web3: Web3, accountId: string, message: string, password?: string): Promise<string>;
|
|
38
38
|
/** Encrypt data using the Provider's own symmetric key
|
|
39
39
|
* @param {string} data data in json format that needs to be sent , it can either be a DDO or a File array
|
|
40
40
|
* @param {string} providerUri provider uri address
|
package/package.json
CHANGED