|
3 | 3 | import { BigInt, Bytes } from "@graphprotocol/graph-ts";
|
4 | 4 |
|
5 | 5 | import { Gateway } from "../generated/BTCGateway/Gateway";
|
6 |
| -import { Transaction } from "../generated/schema"; |
| 6 | +import { Integrator, Transaction } from "../generated/schema"; |
7 | 7 | import { BurnCall, MintCall } from "../generated/ZECGateway/Gateway";
|
8 | 8 | import {
|
9 | 9 | getIntegrator,
|
10 | 10 | getIntegratorContract,
|
11 | 11 | getRenVM,
|
12 |
| - one, |
| 12 | + one |
13 | 13 | } from "./utils/common";
|
14 | 14 |
|
15 | 15 | export function handleMint(call: MintCall): void {
|
@@ -39,7 +39,7 @@ export function handleMint(call: MintCall): void {
|
39 | 39 | // Check that the mint hasn't been submitted directly by an account
|
40 | 40 | if (!call.transaction.to.equals(gateway._address)) {
|
41 | 41 | if (tx.integrator !== null) {
|
42 |
| - let integrator = getIntegrator(tx.integrator as Bytes); |
| 42 | + let integrator: Integrator = getIntegrator(tx.integrator as Bytes); |
43 | 43 | integrator.txCountBTC = integrator.txCountBTC.plus(one());
|
44 | 44 | integrator.volumeBTC = integrator.volumeBTC.plus(tx.amount);
|
45 | 45 | integrator.lockedBTC = integrator.lockedBTC.plus(tx.amount);
|
@@ -95,7 +95,7 @@ export function handleBurn(call: BurnCall): void {
|
95 | 95 |
|
96 | 96 | // Check that the burn hasn't been submitted directly by an account
|
97 | 97 | if (!call.transaction.to.equals(gateway._address)) {
|
98 |
| - let integrator = getIntegrator(tx.integrator as Bytes); |
| 98 | + let integrator: Integrator = getIntegrator(tx.integrator as Bytes); |
99 | 99 | integrator.txCountBTC = integrator.txCountBTC.plus(one());
|
100 | 100 | integrator.volumeBTC = integrator.volumeBTC.plus(tx.amount);
|
101 | 101 | integrator.lockedBTC = integrator.lockedBTC.plus(tx.amount);
|
|
0 commit comments