This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| • The overall “separate Signer app” concept is clear and aligns with WebAuthn/FIDO-style separation of concerns; it’s a reasonable direction for reducing hot-wallet attack surface. | |
| • The CAIP positioning may benefit from clarification: today it reads like a CAIP-style draft, but it does not yet leverage common CAIP interoperability primitives (e.g., chain/account identifiers, scoped authorization). It might be better to either explicitly scope it as “CAIP-inspired,” or introduce CAIP-2/CAIP-10 objects plus a simple scopes model (chains/accounts/methods/expiry). | |
| • For ecosystem adoption, the current encoding stack is somewhat multi-layered (custom big-endian header + CBOR wrapper + COSE + AEAD/AAD). This is feasible in-house, but can be harder for third parties to implement consistently across languages. | |
| • The Method field being int8 (with response codes in 128–255 potentially appearing negative) could be a portability footgun; using unsigned types (uint8) is often simpler for cross-language SDKs. | |
| • The b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import Foundation | |
| // MARK: - Errors | |
| public enum BGIParserError: Error { | |
| case fileNotFound(String) | |
| case readFailed(Error) | |
| case propertyListError(Error) | |
| case unsupportedFormat | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hey, I'm hewigovens-360470 and I have contributed to the Privacy Pools Ceremony. | |
| The following are my contribution signatures: | |
| Circuit # 1 (withdraw) | |
| Contributor # 366 | |
| Contribution Hash: | |
| 98808868 fc428b75 00f66a9c 94be9080 | |
| 9df6c6c4 029f86f1 00b19b38 8ebe1894 | |
| 89994ffe b7d06526 013dc093 8b6ca6d3 | |
| 99a63345 31628072 3738d78c f639f393 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "log" | |
| "net/http" | |
| ) | |
| func main() { | |
| fmt.Println("Serving files in the current directory on port 8080") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl --location 'https://api.thegraph.com/subgraphs/name/ensdomains/ens' \ | |
| --header 'Content-Type: application/json' \ | |
| --data '{ | |
| "query": "query getRecords($id: String!) {\n domain(id: $id) {\n name\n isMigrated\n createdAt\n resolver {\n texts\n coinTypes\n contentHash\n addr {\n id\n }\n }\n id\n }\n}", | |
| "variables": { | |
| "id": "0xee6c4522aab0003e8d14cd40a6af439055fd2577951148c14b6cea9a53475835" | |
| }, | |
| "operationName": "getRecords" | |
| }' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Check if the correct number of arguments were provided | |
| if [ $# -eq 0 ]; then | |
| echo "Usage: $0 image_directory file_extension compression_quality" | |
| exit 1 | |
| fi | |
| dir="$1" | |
| ext="${2:-png}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| *~ | |
| .vscode | |
| node_modules/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Copyright © 2017-2020 Trust Wallet. | |
| // | |
| // This file is part of Trust. The full Trust copyright notice, including | |
| // terms governing use, modification, and redistribution, is contained in the | |
| // file LICENSE at the root of the source code distribution tree. | |
| import Security | |
| @_cdecl("random32") | |
| public func random32() -> UInt32 { | |
| var bytes = [UInt8](repeating: 0, count: 32) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var testEndpointCORS = (url) => { | |
| var method = "POST"; | |
| var xhr = new XMLHttpRequest(); | |
| var json = { | |
| jsonrpc: "2.0", | |
| method: "eth_getBlockByHash", | |
| params: [ | |
| "0xb3b20624f8f0f86eb50dd04688409e5cea4bd02d700bf6e79e9384d47d6a5a35", | |
| true, | |
| ], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env node | |
| const { utils } = require('ethers'); | |
| const secp256k1 = require('secp256k1'); | |
| function ethereumMessage(str) { | |
| const data = Buffer.from(str, 'utf8'); | |
| const prefix = Buffer.from( | |
| `\u{19}Ethereum Signed Message:\n${data.length}`, | |
| 'utf8', |
NewerOlder