Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: KeepKey produces accurate EIP-712 eth_signTypedData_v4 signatures #649

Merged
merged 19 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 5 additions & 9 deletions examples/sandbox/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -300,12 +300,13 @@ <h5>Arkeo</h5>
<h4>Ethereum</h4>
<button class="button button-outline" id="ethAddr">Address</button>
<button class="button button-outline" id="ethTx">Tx</button>
<button class="button button-outline" id="ethSign">Sign</button>
<button class="button button-outline" id="ethEIP1559">EIP-1559?</button>
<button class="button button-outline" id="ethSend">Send</button>
<button class="button button-outline" id="ethSign">Sign Message</button>
<button class="button button-outline" id="ethVerify">Verify</button>
<button class="button button-outline" id="ethEIP1559">EIP-1559?</button>
<button class="button button-outline" id="ethSignTypedData">Sign Typed Data</button>
<button class="button button-outline" id="ethSignTypedDataPreCalculate">Sign Typed Data (Pre-Calculate)</button>
<button class="button button-outline" id="ethSignTypedData">Sign Typed Data (OpenSea Listing)</button>
<button class="button button-outline" id="ethSignTypedDataAlternate1">Sign Typed Data (primaryType is 80+ chars)</button>
<button class="button button-outline" id="ethSignTypedDataAlternate2">Sign Typed Data (primaryType is "EIP712Domain")</button>
<input type="text" id="ethResults" />
</div>
<div class="container">
Expand Down Expand Up @@ -437,11 +438,6 @@ <h3>Mnemoic Required</h3>
</div>

<script src="https://unpkg.com/[email protected]/dist/debug.js"></script>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"
></script>
<script type="module" src="./index.ts"></script>
</body>
</html>
Loading
Loading