9de3683bf3
* chore: filter assets by status (1108) * chore: moved asset status * chore: re-adding filterin after merge (changed upstream) * chore: filter assets by status (1108) * chore: moved asset status * types * fixed deposit cypress tests
17 lines
238 B
TypeScript
17 lines
238 B
TypeScript
import { gql } from '@apollo/client';
|
|
|
|
export const ASSET_FRAGMENT = gql`
|
|
fragment AssetFields on Asset {
|
|
id
|
|
symbol
|
|
name
|
|
decimals
|
|
status
|
|
source {
|
|
... on ERC20 {
|
|
contractAddress
|
|
}
|
|
}
|
|
}
|
|
`;
|