What's Changed
Support for EIP-1559 Gas Prices
Added Chain support for EIP-1559 gas prices (i.e., gas price type of fixed1559
). #637
In addition to the other gas prices returned, an EIP-1559 can also now be returned:
GET /v1/chains/<chainId>
{
...
"gasPrice": [
...
{
"type": "fixed1559",
"maxFeePerGas": "<string>",
"maxPriorityFeePerGas": "<string>"
}
]
}
New route to unregister a device from push notifications
A new route was added which supports deleting the push notification registration for a device: DEL /v1/chains/<chainId>/notifications/devices/<uuid>
. This route deletes the device registration across for all safes. #636
This is in addition to the currently available route which takes both the safeAddress
and the uuid
: DEL /v1/chains/<chainId>/notifications/devices/<uuid>/safes/<safeAddress>
which deleted the device registration for a specific safeAddress
.
Other Changes
- Decrease the usage of all-transactions endpoint in #634
- Remove workaround to bypass error when safe address is not defined in #635
- Fix VSCode-specific project settings in #643
- Bump @nestjs/common from 10.1.0 to 10.1.3 in #638
- Bump @nestjs/schematics from 10.0.1 to 10.0.2 in #639
- Bump eslint from 8.46.0 to 8.47.0 in #640
- Bump prettier from 3.0.0 to 3.0.1 in #641
- Bump @types/lodash from 4.14.195 to 4.14.197 in #642
New Contributors
Full Changelog: v1.1.0...v1.2.0