@shapeshiftoss/hdwallet-core
Advanced tools
Comparing version 0.18.10 to 0.18.11
@@ -46,7 +46,7 @@ import { BIP32Path } from "./wallet"; | ||
} | ||
export interface EosSignedTx { | ||
signatureV?: number; | ||
signatureR: Uint8Array | string; | ||
signatureS: Uint8Array | string; | ||
hash: Uint8Array | string; | ||
export interface EosTxSigned { | ||
signatureV: number; | ||
signatureR: Uint8Array; | ||
signatureS: Uint8Array; | ||
hash: Uint8Array; | ||
eosFormSig: string; | ||
@@ -69,3 +69,3 @@ } | ||
eosGetPublicKey(msg: EosGetPublicKey): Promise<string>; | ||
eosSignTx(msg: EosToSignTx): Promise<Core.EosSignedTx>; | ||
eosSignTx(msg: EosToSignTx): Promise<EosTxSigned>; | ||
} |
{ | ||
"name": "@shapeshiftoss/hdwallet-core", | ||
"version": "0.18.10", | ||
"version": "0.18.11", | ||
"license": "MIT", | ||
@@ -31,3 +31,3 @@ "publishConfig": { | ||
}, | ||
"gitHead": "89ab036f2cc866a1d8c0e2cbfaf3e5efc93b6254" | ||
"gitHead": "117eb5833f32731fc5698620dd6ce93a674f374f" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
247223