Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
github.com/storyicon/sigverify
This project is used to verify signatures under various specifications of ethereum. In addition to the standard elliptic curve signature, it also supports the signature of wallets such as ledger and argent.
It supports:
ledger
.package main
import (
"fmt"
ethcommon "github.com/ethereum/go-ethereum/common"
"github.com/storyicon/sigverify"
)
func main() {
valid, err := sigverify.VerifyEllipticCurveHexSignatureEx(
ethcommon.HexToAddress("0xb052C02346F80cF6ae4DF52c10FABD3e0aD24d81"),
[]byte("hello"),
"0x0498c6564863c78e663848b963fde1ea1d860d5d882d2abdb707d1e9179ff80630a4a71705da534a562c08cb64a546c6132de26eb77a44f086832cbc1dbe01f71b",
)
fmt.Println(valid, err) // true <nil>
}
package main
import (
"encoding/json"
"fmt"
ethcommon "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/signer/core/apitypes"
"github.com/storyicon/sigverify"
)
const ExampleTypedData = `
{
"types": {
"EIP712Domain": [
{
"name": "name",
"type": "string"
},
{
"name": "chainId",
"type": "uint256"
}
],
"RandomAmbireTypeStruct": [
{
"name": "identity",
"type": "address"
},
{
"name": "rewards",
"type": "uint256"
}
]
},
"domain": {
"name": "Ambire Typed test message",
"chainId": "1"
},
"primaryType": "RandomAmbireTypeStruct",
"message": {
"identity": "0x0000000000000000000000000000000000000000",
"rewards": 0
}
}
`
func main() {
var typedData apitypes.TypedData
if err := json.Unmarshal([]byte(ExampleTypedData), &typedData); err != nil {
panic(err)
}
valid, err := sigverify.VerifyTypedDataHexSignatureEx(
ethcommon.HexToAddress("0xaC39b311DCEb2A4b2f5d8461c1cdaF756F4F7Ae9"),
typedData,
"0xee0d9f9e63fa7183bea2ca2e614cf539464a4c120c8dfc1d5ccc367f242a2c5939d7f59ec2ab413b8a9047de5de2f1e5e97da4eba2ef0d6a89136464f992dae11c",
)
fmt.Println(valid, err) // true <nil>
}
package main
import (
"context"
"fmt"
ethcommon "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/ethclient"
"github.com/storyicon/sigverify"
)
func main() {
client, err := ethclient.Dial("https://polygon-rpc.com")
if err != nil {
panic(err)
}
valid, err := sigverify.VerifyERC1271HexSignature(
context.Background(),
client,
ethcommon.HexToAddress("0x4836A472ab1dd406ECb8D0F933A985541ee3921f"),
[]byte{120, 113, 119},
"0xc0f8db6019888d87a0afc1299e81ef45d3abce64f63072c8d7a6ef00f5f82c1522958ff110afa98b8c0d23b558376db1d2fbab4944e708f8bf6dc7b977ee07201b00",
)
fmt.Println(valid, err) // true <nil>
}
Thank you for considering to help out with the source code! Welcome contributions from anyone on the internet, and are grateful for even the smallest of fixes!
If you'd like to contribute to this project, please fork, fix, commit and send a pull request for me to review and merge into the main code base.
Please make sure your contributions adhere to our coding guidelines:
master
branch.FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.