Skip to content

Tags: gnosis/solvers

Tags

v0.38.0

Toggle v0.38.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update CoW dependencies to v2.287.1 (#91)

Updated CoW dependencies to v2.287.1

Co-authored-by: Your Name <[email protected]>

v0.37.1

Toggle v0.37.1's commit message
[TRIVIAL] Base: Add support for Balancer (#90)

Add support for Balancer chain ID.

v0.37.0

Toggle v0.37.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update CoW dependencies to v2.286.0 (#89)

Updated CoW dependencies to v2.286.0

Co-authored-by: Your Name <[email protected]>

v0.36.0

Toggle v0.36.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update CoW dependencies to v2.285.2 (#87)

Updated CoW dependencies to v2.285.2

Co-authored-by: Your Name <[email protected]>

v0.35.0

Toggle v0.35.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update CoW dependencies to v2.284.0 (#86)

Updated CoW dependencies to v2.284.0

---------

Co-authored-by: Your Name <[email protected]>
Co-authored-by: Mateo <[email protected]>

v0.34.0

Toggle v0.34.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Base support (#83)

Add base chain id support.

v0.33.0-base

Toggle v0.33.0-base's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge branch 'main' into bump-base-contracts

v0.33.0

Toggle v0.33.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update CoW dependencies to v2.282.2 (#82)

Updated CoW dependencies to v2.282.2

---------

Co-authored-by: Your Name <[email protected]>
Co-authored-by: ilya <[email protected]>
Co-authored-by: MartinquaXD <[email protected]>

v0.32.0

Toggle v0.32.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix 1Inch quoting issues (#81)

Currently the 1Inch solver returns a ton of 403 errors while quoting.
The reason is that the 1Inch API checks the `tx.origin` for legal
requirements and for quote requests we currently send the zero address.
Since that address obviously can't be the origin of any transaction they
refuse to return quotes for those.

To work around that we set `from` (our settlement contract) as the
`tx.origin` for quote requests. Since the calldata generated for that
will never get used to settle real orders this is okay.

v0.31.1

Toggle v0.31.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump max request size limit to 30M (#80)

`axum` by default has a requests body limit of 2MB so when auction
instances become bigger than that due to too many orders `axum` rejects
the request before any handler gets the chance to see it.

I now removed the request limit altogether since these endpoints are not
exposed to the public so we don't have to worry about malicious spam.