@novasamatech/product-sdk 0.7.9-2 → 0.7.9-3

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/accounts.js CHANGED
@@ -153,7 +153,7 @@ export const createAccountsProvider = (transport = sandboxTransport) => {
153
153
  }
154
154
  const txPayload = {
155
155
  signer: productAccountId,
156
- genesisHash: checkGenesis.value,
156
+ genesisHash: checkGenesis.additionalSigned,
157
157
  callData,
158
158
  extensions: Object.values(signedExtensions).map(({ identifier, value, additionalSigned }) => ({
159
159
  id: identifier,
@@ -115,7 +115,7 @@ export async function createLegacyExtensionEnableFactory(transport) {
115
115
  const possibleAccountId = accountId.enc(signer);
116
116
  const response = await hostApi.createTransactionWithLegacyAccount(enumValue('v1', {
117
117
  signer: possibleAccountId,
118
- genesisHash: fromHex(checkGenesis.extra),
118
+ genesisHash: fromHex(checkGenesis.additionalSigned),
119
119
  callData: fromHex(payload.callData),
120
120
  txExtVersion: payload.txExtVersion,
121
121
  extensions: payload.extensions.map(e => ({
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@novasamatech/product-sdk",
3
3
  "type": "module",
4
- "version": "0.7.9-2",
4
+ "version": "0.7.9-3",
5
5
  "description": "Polkadot product SDK: 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-2",
31
+ "@novasamatech/host-api": "0.7.9-3",
32
32
  "polkadot-api": ">=2",
33
33
  "neverthrow": "^8.2.0"
34
34
  },