remove unneccessary file

This commit is contained in:
einhorn_b 2023-09-27 09:03:34 +02:00
parent 2e662b86cb
commit 936fcfce04

View File

@ -1,32 +0,0 @@
# -----------------------------------------------
# !!! THIS FILE WAS GENERATED BY TYPE-GRAPHQL !!!
# !!! DO NOT MODIFY THIS FILE BY YOURSELF !!!
# -----------------------------------------------
"""The `Decimal` scalar type to represent currency values"""
scalar Decimal
type Mutation {
transmitTransaction(data: TransactionInput!): TransmitTransactionResult!
}
type Query {
version: String!
}
input TransactionInput {
amount: Decimal!
createdAt: Int!
type: TransactionType!
}
"""Type of the transaction"""
enum TransactionType {
CREATION
RECEIVE
SEND
}
type TransmitTransactionResult {
dltTransactionIdHex: String!
}