File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @gnosis.pm/safe-react-gateway-sdk" ,
3
- "version" : " 3.2.0 " ,
3
+ "version" : " 3.2.1 " ,
4
4
"main" : " dist/index.min.js" ,
5
5
"types" : " dist/index.d.ts" ,
6
6
"files" : [
Original file line number Diff line number Diff line change @@ -32,13 +32,16 @@ export enum TokenType {
32
32
NATIVE_TOKEN = 'NATIVE_TOKEN' ,
33
33
}
34
34
35
+ /**
36
+ * @see https://github.com/safe-global/safe-client-gateway/blob/main/src/common/models/backend/balances.rs
37
+ */
35
38
export type TokenInfo = {
36
39
type : TokenType
37
40
address : string
38
41
decimals : number
39
42
symbol : string
40
43
name : string
41
- logoUri : string | null
44
+ logoUri : string
42
45
}
43
46
44
47
export type SafeBalanceResponse = {
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ export type DecodedDataParameterValue = {
15
15
to : string
16
16
value : string
17
17
data : string
18
- dataDecoded : {
18
+ dataDecoded ? : {
19
19
method : string
20
20
parameters : DecodedDataBasicParameter [ ]
21
- } | null
21
+ }
22
22
}
23
23
24
24
export type DecodedDataParameter = {
You can’t perform that action at this time.
0 commit comments