Feat/1048: Remove asset.totalSupply (#1056)

This commit is contained in:
Sam Keen 2022-08-16 15:30:13 +01:00 committed by GitHub
parent fad56d5b2e
commit e23900168b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 10 deletions

View File

@ -65,10 +65,6 @@ export interface AssetsQuery_assets {
* The symbol of the asset (e.g: GBP)
*/
symbol: string;
/**
* The total supply of the market
*/
totalSupply: string;
/**
* The precision of the asset
*/

View File

@ -12,7 +12,6 @@ export const ASSETS_QUERY = gql`
id
name
symbol
totalSupply
decimals
source {
... on ERC20 {

View File

@ -63,10 +63,6 @@ export interface MarketsQuery_markets_tradableInstrument_instrument_product_sett
* The precision of the asset
*/
decimals: number;
/**
* The total supply of the market
*/
totalSupply: string;
/**
* The global reward pool account for this asset
*/

View File

@ -33,7 +33,6 @@ const MARKETS_QUERY = gql`
id
name
decimals
totalSupply
globalRewardPoolAccount {
balance
}