1+ import  {  AddressEx ,  TokenInfo  }  from  './common' 
2+ 
13export  type  ParamValue  =  string  |  ParamValue [ ] 
24
35export  enum  Operation  { 
@@ -27,12 +29,6 @@ export type DataDecoded = {
2729  parameters : Parameter [ ]  |  null 
2830} 
2931
30- export  type  AddressEx  =  { 
31-   value : string 
32-   name : string  |  null 
33-   logoUri : string  |  null 
34- } 
35- 
3632export  enum  TransactionStatus  { 
3733  AWAITING_CONFIRMATIONS  =  'AWAITING_CONFIRMATIONS' , 
3834  AWAITING_EXECUTION  =  'AWAITING_EXECUTION' , 
@@ -49,14 +45,14 @@ export enum TransferDirection {
4945  UNKNOWN  =  'UNKNOWN' , 
5046} 
5147
52- export  enum  TokenType  { 
48+ export  enum  TransactionTokenType  { 
5349  ERC20  =  'ERC20' , 
5450  ERC721  =  'ERC721' , 
5551  NATIVE_COIN  =  'NATIVE_COIN' , 
5652} 
5753
5854export  type  Erc20Transfer  =  { 
59-   type : TokenType . ERC20 
55+   type : TransactionTokenType . ERC20 
6056  tokenAddress : string 
6157  tokenName : string  |  null 
6258  tokenSymbol : string  |  null 
@@ -66,7 +62,7 @@ export type Erc20Transfer = {
6662} 
6763
6864export  type  Erc721Transfer  =  { 
69-   type : TokenType . ERC721 
65+   type : TransactionTokenType . ERC721 
7066  tokenAddress : string 
7167  tokenId : string 
7268  tokenName : string  |  null 
@@ -75,7 +71,7 @@ export type Erc721Transfer = {
7571} 
7672
7773export  type  NativeCoinTransfer  =  { 
78-   type : TokenType . NATIVE_COIN 
74+   type : TransactionTokenType . NATIVE_COIN 
7975  value : string 
8076} 
8177
@@ -278,15 +274,6 @@ export type MultisigConfirmation = {
278274  submittedAt : number 
279275} 
280276
281- export  type  TokenInfo  =  { 
282-   type : TokenType 
283-   address : string 
284-   decimals : number 
285-   symbol : string 
286-   name : string 
287-   logoUri : string  |  null 
288- } 
289- 
290277export  type  MultisigExecutionDetails  =  { 
291278  type : 'MULTISIG' 
292279  submittedAt : number 
0 commit comments