@oceanprotocol/lib 5.0.0-next.5 → 5.0.1
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 +15 -0
- package/dist/lib.cjs +1 -1
- package/dist/lib.cjs.map +1 -1
- package/dist/lib.modern.js +1 -1
- package/dist/lib.modern.js.map +1 -1
- package/dist/lib.module.mjs +1 -1
- package/dist/lib.module.mjs.map +1 -1
- package/dist/lib.umd.js +1 -1
- package/dist/lib.umd.js.map +1 -1
- package/dist/types/contracts/AccessListFactory.d.ts +1 -1
- package/package.json +1 -1
|
@@ -25,7 +25,7 @@ export declare class AccesslistFactory extends SmartContractWithAddress {
|
|
|
25
25
|
* @param {string} owner Owner of the access list.
|
|
26
26
|
* @param {string[]} user Users of the access lists as addresses.
|
|
27
27
|
* @param {Boolean} [estimateGas] if True, return gas estimate
|
|
28
|
-
* @return {Promise<string|BigNumber>}
|
|
28
|
+
* @return {Promise<string|BigNumber>} Deployed contract address
|
|
29
29
|
*/
|
|
30
30
|
deployAccessListContract<G extends boolean = false>(nameAccessList: string, symbolAccessList: string, tokenURI: string[], transferable: boolean, owner: string, user: string[], estimateGas?: G): Promise<G extends false ? string : BigNumberish>;
|
|
31
31
|
/**
|
package/package.json
CHANGED