@novasamatech/host-api-wrapper 0.7.9-5 → 0.7.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.
Files changed (2) hide show
  1. package/dist/accounts.js +1 -1
  2. package/package.json +2 -2
package/dist/accounts.js CHANGED
@@ -89,7 +89,7 @@ export const createAccountsProvider = (transport = sandboxTransport) => {
89
89
  * The factory is async because `PolkadotSigner.publicKey` must be a synchronous
90
90
  * `Uint8Array` on the returned object — it is fetched up front via `host_account_get`.
91
91
  */
92
- getProductAccountSigner(account, signerType = 'signPayload') {
92
+ getProductAccountSigner(account, signerType = 'createTransaction') {
93
93
  const hostApi = createHostApi(transport);
94
94
  const productAccountId = [account.dotNsIdentifier, account.derivationIndex];
95
95
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@novasamatech/host-api-wrapper",
3
3
  "type": "module",
4
- "version": "0.7.9-5",
4
+ "version": "0.7.9",
5
5
  "description": "Host API wrapper: integrate and run your product inside Polkadot browser.",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
@@ -28,7 +28,7 @@
28
28
  "@polkadot/extension-inject": "^0.63.1",
29
29
  "@polkadot-api/json-rpc-provider-proxy": "^0.4.0",
30
30
  "@polkadot-api/substrate-bindings": "^0.20.2",
31
- "@novasamatech/host-api": "0.7.9-5",
31
+ "@novasamatech/host-api": "0.7.9",
32
32
  "polkadot-api": ">=2",
33
33
  "neverthrow": "^8.2.0"
34
34
  },