Skip to content

Commit

Permalink
Merge branch 'master' into fix/fe-release-remerge-master
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiTimesChi committed Dec 14, 2023
2 parents 5e35984 + d3e2ad0 commit 1db15f6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ethergo/signer/signer/localsigner/signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func decodeSignature(sig []byte) signer.Signature {
if len(sig) != crypto.SignatureLength {
panic(fmt.Sprintf("wrong size for signature: got %d, want %d", len(sig), crypto.SignatureLength))
}
v := new(big.Int).SetBytes([]byte{sig[64] + 27})
v := new(big.Int).SetBytes([]byte{sig[64]})
r := new(big.Int).SetBytes(sig[:32])
s := new(big.Int).SetBytes(sig[32:64])

Expand Down
2 changes: 1 addition & 1 deletion ethergo/signer/signer/signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func DecodeSignature(sig []byte) Signature {
}
r := new(big.Int).SetBytes(sig[:32])
s := new(big.Int).SetBytes(sig[32:64])
v := new(big.Int).SetBytes([]byte{sig[64] + 27})
v := new(big.Int).SetBytes([]byte{sig[64]})
return NewSignature(v, r, s)
}

Expand Down
8 changes: 8 additions & 0 deletions packages/synapse-interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.1.207](https://github.com/synapsecns/sanguine/compare/@synapsecns/[email protected]...@synapsecns/[email protected]) (2023-12-14)

**Note:** Version bump only for package @synapsecns/synapse-interface





## [0.1.206](https://github.com/synapsecns/sanguine/compare/@synapsecns/[email protected]...@synapsecns/[email protected]) (2023-12-13)

**Note:** Version bump only for package @synapsecns/synapse-interface
Expand Down
4 changes: 2 additions & 2 deletions packages/synapse-interface/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@synapsecns/synapse-interface",
"version": "0.1.206",
"version": "0.1.207",
"private": true,
"engines": {
"node": ">=16.0.0"
Expand Down Expand Up @@ -55,7 +55,7 @@
"@vercel/analytics": "^1.0.2",
"@visx/chord": "^3.0.0",
"@visx/shape": "^3.0.0",
"@wagmi/core": "^1.4.5",
"@wagmi/core": "^1.4.12",
"add": "^2.0.6",
"autoprefixer": "^10.4.13",
"babel-plugin-transform-bigint": "^1.0.32",
Expand Down

0 comments on commit 1db15f6

Please sign in to comment.