@pioneer-platform/pioneer-sdk 8.12.7 → 8.12.8

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 CHANGED
@@ -1215,6 +1215,7 @@ async function createUnsignedEvmTx(caip, to, amount, memo, pubkeys, pioneer, pub
1215
1215
  }
1216
1216
  unsignedTx = {
1217
1217
  chainId,
1218
+ from: address,
1218
1219
  nonce: toHex(nonce),
1219
1220
  gas: toHex(gasLimit),
1220
1221
  gasPrice: toHex(gasPrice),
package/dist/index.es.js CHANGED
@@ -1391,6 +1391,7 @@ async function createUnsignedEvmTx(caip, to, amount, memo, pubkeys, pioneer, pub
1391
1391
  }
1392
1392
  unsignedTx = {
1393
1393
  chainId,
1394
+ from: address,
1394
1395
  nonce: toHex(nonce),
1395
1396
  gas: toHex(gasLimit),
1396
1397
  gasPrice: toHex(gasPrice),
package/dist/index.js CHANGED
@@ -1391,6 +1391,7 @@ async function createUnsignedEvmTx(caip, to, amount, memo, pubkeys, pioneer, pub
1391
1391
  }
1392
1392
  unsignedTx = {
1393
1393
  chainId,
1394
+ from: address,
1394
1395
  nonce: toHex(nonce),
1395
1396
  gas: toHex(gasLimit),
1396
1397
  gasPrice: toHex(gasPrice),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "author": "highlander",
3
3
  "name": "@pioneer-platform/pioneer-sdk",
4
- "version": "8.12.7",
4
+ "version": "8.12.8",
5
5
  "dependencies": {
6
6
  "@keepkey/keepkey-sdk": "^0.2.62",
7
7
  "@pioneer-platform/loggerdog": "^8.11.0",
@@ -517,6 +517,7 @@ export async function createUnsignedEvmTx(
517
517
 
518
518
  unsignedTx = {
519
519
  chainId,
520
+ from: address, // Required for simulation (insight endpoint validation)
520
521
  nonce: toHex(nonce),
521
522
  gas: toHex(gasLimit),
522
523
  gasPrice: toHex(gasPrice),