@audius/sdk 0.0.38 → 0.0.39
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/dist/NativeAudiusLibs.d.ts +3 -2
- package/dist/index.cjs.js +2 -2
- package/dist/index.esm.js +2 -2
- package/dist/legacy.js +2 -2
- package/dist/native-libs.js +4 -3
- package/dist/native-libs.js.map +1 -1
- package/package.json +2 -2
- package/src/NativeAudiusLibs.ts +3 -1
package/package.json
CHANGED
package/src/NativeAudiusLibs.ts
CHANGED
|
@@ -157,7 +157,8 @@ export class AudiusLibs {
|
|
|
157
157
|
static configInternalWeb3(
|
|
158
158
|
registryAddress: string,
|
|
159
159
|
providers: provider,
|
|
160
|
-
privateKey
|
|
160
|
+
privateKey?: string,
|
|
161
|
+
entityManagerAddress?: string
|
|
161
162
|
) {
|
|
162
163
|
let providerList
|
|
163
164
|
if (typeof providers === 'string') {
|
|
@@ -174,6 +175,7 @@ export class AudiusLibs {
|
|
|
174
175
|
|
|
175
176
|
return {
|
|
176
177
|
registryAddress,
|
|
178
|
+
entityManagerAddress,
|
|
177
179
|
useExternalWeb3: false,
|
|
178
180
|
internalWeb3Config: {
|
|
179
181
|
web3ProviderEndpoints: providerList,
|