File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.0.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
8
+ ## [ 0.9.1] - 2025-07-07
9
+
10
+ - Add currency id to store/currencies route
11
+
8
12
## [ 0.9.0] - 2025-05-20
9
13
10
- - Public release
11
- -
14
+ - Public release
Original file line number Diff line number Diff line change 7
7
class CurrencyDto
8
8
{
9
9
public function __construct (
10
+ public readonly string $ id ,
10
11
public readonly string $ blockchain ,
11
12
public readonly string $ code ,
12
13
public readonly string $ contractAddress ,
Original file line number Diff line number Diff line change @@ -275,6 +275,7 @@ public function getStoreCurrencies(
275
275
$ currencies = [];
276
276
foreach ($ json ['data ' ] as $ data ) {
277
277
$ currencies [] = new CurrencyDto (
278
+ $ data ['id ' ],
278
279
$ data ['blockchain ' ],
279
280
$ data ['code ' ],
280
281
$ data ['contract_address ' ],
You can’t perform that action at this time.
0 commit comments