@pioneer-platform/pioneer-sdk 4.21.5 → 4.21.7
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 +2 -2
- package/src/index.ts +1 -1
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "highlander",
|
|
3
3
|
"name": "@pioneer-platform/pioneer-sdk",
|
|
4
|
-
"version": "4.21.
|
|
4
|
+
"version": "4.21.7",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@keepkey/keepkey-sdk": "^0.2.62",
|
|
7
7
|
"@pioneer-platform/loggerdog": "^8.11.0",
|
|
8
8
|
"@pioneer-platform/pioneer-caip": "^9.10.0",
|
|
9
|
-
"@pioneer-platform/pioneer-client": "^9.10.
|
|
9
|
+
"@pioneer-platform/pioneer-client": "^9.10.10",
|
|
10
10
|
"@pioneer-platform/pioneer-coins": "^9.11.0",
|
|
11
11
|
"@pioneer-platform/pioneer-discovery": "^0.8.0",
|
|
12
12
|
"@pioneer-platform/pioneer-events": "^8.11.0",
|
package/src/index.ts
CHANGED
|
@@ -151,7 +151,7 @@ export class SDK {
|
|
|
151
151
|
timeToConfirm: string | null;
|
|
152
152
|
}>;
|
|
153
153
|
public broadcastTx: (caip: string, signedTx: any) => Promise<any>;
|
|
154
|
-
public signTx: (unsignedTx: any) => Promise<any>;
|
|
154
|
+
public signTx: (caip: string, unsignedTx: any) => Promise<any>;
|
|
155
155
|
public buildTx: (sendPayload: any) => Promise<any>;
|
|
156
156
|
public buildDelegateTx: (caip: string, params: StakingTxParams) => Promise<any>;
|
|
157
157
|
public buildUndelegateTx: (caip: string, params: StakingTxParams) => Promise<any>;
|