emblem-vault-ai-signers 0.1.6 → 0.1.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.
Files changed (2) hide show
  1. package/dist/utils.js +3 -0
  2. package/package.json +1 -1
package/dist/utils.js CHANGED
@@ -37,6 +37,9 @@ export function normalizeTxForEmblem(tx) {
37
37
  // Remove fields commonly unsupported by legacy serializers
38
38
  delete out.type;
39
39
  delete out.accessList;
40
+ delete out.account;
41
+ delete out.chain;
42
+ delete out.from;
40
43
  return out;
41
44
  }
42
45
  export function isHexString(value) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "emblem-vault-ai-signers",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Emblem Vault remote signer adapters for viem and ethers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",