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.
- package/dist/utils.js +3 -0
- 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) {
|