@pioneer-platform/pioneer-sdk 4.20.8 → 4.20.9
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/index.cjs +1 -1
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4278,7 +4278,7 @@ class SDK {
|
|
|
4278
4278
|
const pioneerConfig = {
|
|
4279
4279
|
...config
|
|
4280
4280
|
};
|
|
4281
|
-
const PioneerClient = new import_pioneer_client.
|
|
4281
|
+
const PioneerClient = new import_pioneer_client.Pioneer(this.spec, pioneerConfig);
|
|
4282
4282
|
this.pioneer = await PioneerClient.init();
|
|
4283
4283
|
if (!this.pioneer)
|
|
4284
4284
|
throw Error("Failed to init pioneer server!");
|
package/dist/index.es.js
CHANGED
|
@@ -4454,7 +4454,7 @@ class SDK {
|
|
|
4454
4454
|
const pioneerConfig = {
|
|
4455
4455
|
...config
|
|
4456
4456
|
};
|
|
4457
|
-
const PioneerClient = new import_pioneer_client.
|
|
4457
|
+
const PioneerClient = new import_pioneer_client.Pioneer(this.spec, pioneerConfig);
|
|
4458
4458
|
this.pioneer = await PioneerClient.init();
|
|
4459
4459
|
if (!this.pioneer)
|
|
4460
4460
|
throw Error("Failed to init pioneer server!");
|
package/dist/index.js
CHANGED
|
@@ -4454,7 +4454,7 @@ class SDK {
|
|
|
4454
4454
|
const pioneerConfig = {
|
|
4455
4455
|
...config
|
|
4456
4456
|
};
|
|
4457
|
-
const PioneerClient = new import_pioneer_client.
|
|
4457
|
+
const PioneerClient = new import_pioneer_client.Pioneer(this.spec, pioneerConfig);
|
|
4458
4458
|
this.pioneer = await PioneerClient.init();
|
|
4459
4459
|
if (!this.pioneer)
|
|
4460
4460
|
throw Error("Failed to init pioneer server!");
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { KeepKeySdk } from '@keepkey/keepkey-sdk';
|
|
2
2
|
import { caipToNetworkId, networkIdToCaip } from '@pioneer-platform/pioneer-caip';
|
|
3
|
-
import Pioneer from '@pioneer-platform/pioneer-client';
|
|
3
|
+
import { Pioneer } from '@pioneer-platform/pioneer-client';
|
|
4
4
|
import { addressNListToBIP32, getPaths } from '@pioneer-platform/pioneer-coins';
|
|
5
5
|
import { assetData } from '@pioneer-platform/pioneer-discovery';
|
|
6
6
|
import { Events } from '@pioneer-platform/pioneer-events';
|