File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @gnosis.pm/safe-react-gateway-sdk" ,
3- "version" : " 3.2.0 " ,
3+ "version" : " 3.2.1 " ,
44 "main" : " dist/index.min.js" ,
55 "types" : " dist/index.d.ts" ,
66 "files" : [
Original file line number Diff line number Diff line change @@ -32,13 +32,16 @@ export enum TokenType {
3232 NATIVE_TOKEN = 'NATIVE_TOKEN' ,
3333}
3434
35+ /**
36+ * @see https://github.com/safe-global/safe-client-gateway/blob/main/src/common/models/backend/balances.rs
37+ */
3538export type TokenInfo = {
3639 type : TokenType
3740 address : string
3841 decimals : number
3942 symbol : string
4043 name : string
41- logoUri : string | null
44+ logoUri : string
4245}
4346
4447export type SafeBalanceResponse = {
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ export type DecodedDataParameterValue = {
1515 to : string
1616 value : string
1717 data : string
18- dataDecoded : {
18+ dataDecoded ? : {
1919 method : string
2020 parameters : DecodedDataBasicParameter [ ]
21- } | null
21+ }
2222}
2323
2424export type DecodedDataParameter = {
You can’t perform that action at this time.
0 commit comments