mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 04:46:20 +00:00
11 lines
205 B
TypeScript
11 lines
205 B
TypeScript
|
import { gql } from 'graphql-request';
|
||
|
|
||
|
export const queryBundle = gql`
|
||
|
query getBundle($id: ID!, $blockNumber: Int!) {
|
||
|
bundle(id: $id, block: { number: $blockNumber }) {
|
||
|
id
|
||
|
ethPriceUSD
|
||
|
}
|
||
|
}
|
||
|
`;
|