-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
* bind signature checks * add test checking isMessageHashSigned sends a message to the interface * fix types * include dist files * make calculateMessageHash static * make calculateMessageHash static * make calculateMessageHash a util function * include dist files
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@gnosis.pm/safe-apps-sdk': patch | ||
--- | ||
|
||
fix missing context on signature checks |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
import { ethers } from 'ethers'; | ||
import { BytesLike } from '../types'; | ||
declare const MAGIC_VALUE = "0x1626ba7e"; | ||
declare const MAGIC_VALUE_BYTES = "0x20c13b0b"; | ||
declare const EIP_1271_INTERFACE: ethers.utils.Interface; | ||
declare const EIP_1271_BYTES_INTERFACE: ethers.utils.Interface; | ||
export { EIP_1271_INTERFACE, EIP_1271_BYTES_INTERFACE, MAGIC_VALUE, MAGIC_VALUE_BYTES }; | ||
declare const calculateMessageHash: (message: BytesLike) => string; | ||
export { EIP_1271_INTERFACE, EIP_1271_BYTES_INTERFACE, MAGIC_VALUE, MAGIC_VALUE_BYTES, calculateMessageHash }; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.