Unique identifier for each Safe App
- An application
id
was added to each safe-app
. This id
uniquely identifies each Safe App (#135)
GET /api/v1/safe-apps/
[
...
{
"id": <integer>,
"url": <string>,
"name": <string>,
...
}
]
Changes to /chains endpoint (work in progress)
- Breaking change: url fields were renamed to uri (#160)
- Added Gas Price information – it can either be considered
fixed
(fixed gas price) or can be associated to an oracle
.
GET /api/v1/chains/
// if an oracle is provided
"gasPrice": {
"type": "oracle",
"uri": <string>,
"gasParameter": <string>, // optional
"gweiFactor": <string> // multiplier returned in order to reach the gwei unit
}
// if a fixed gas price is provided
"gasPrice": {
"type": "fixed",
"weiValue": "10000000000"
}
nativeCurrency
now includes its logo (uri) (#142)
- The pagination limit was increased to
100
(#145)
- ENS Registry Address was added to each chain (optional field) (#143)
- Colours are now restricted to
#RRGGBB
format (#134)
- A
recommendedMasterCopyVersion
was added – it represents the recommended deployed Safe master copy that should be used for each chain. (#153, #155)