chain fee should be a float

This commit is contained in:
keyan 2023-12-20 19:12:43 -06:00
parent fdf8f8e395
commit 0be553296d
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@ import { gql } from 'graphql-tag'
export default gql`
extend type Query {
chainFee: Int!
chainFee: Float!
}
`