Skip to content

Commit 32c4b5d

Browse files
committed
Merge branch 'master' of github.com:renproject/renvm-subgraph
2 parents 572089a + 48e4bf3 commit 32c4b5d

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

src/bchGateway.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
import { BigInt, Bytes } from "@graphprotocol/graph-ts";
44

55
import { BurnCall, Gateway, MintCall } from "../generated/BCHGateway/Gateway";
6-
import { Transaction } from "../generated/schema";
6+
import { Integrator, Transaction } from "../generated/schema";
77
import {
88
getIntegrator,
99
getIntegratorContract,
1010
getRenVM,
11-
one,
11+
one
1212
} from "./utils/common";
1313

1414
export function handleMint(call: MintCall): void {
@@ -37,7 +37,7 @@ export function handleMint(call: MintCall): void {
3737

3838
if (!call.transaction.to.equals(gateway._address)) {
3939
if (tx.integrator !== null) {
40-
let integrator = getIntegrator(tx.integrator as Bytes);
40+
let integrator: Integrator = getIntegrator(tx.integrator as Bytes);
4141
integrator.txCountBCH = integrator.txCountBCH.plus(one());
4242
integrator.volumeBCH = integrator.volumeBCH.plus(tx.amount);
4343
integrator.lockedBCH = integrator.lockedBCH.plus(tx.amount);
@@ -93,7 +93,7 @@ export function handleBurn(call: BurnCall): void {
9393

9494
// Check that the burn hasn't been submitted directly by an account
9595
if (!call.transaction.to.equals(gateway._address)) {
96-
let integrator = getIntegrator(tx.integrator as Bytes);
96+
let integrator: Integrator = getIntegrator(tx.integrator as Bytes);
9797
integrator.txCountBCH = integrator.txCountBCH.plus(one());
9898
integrator.volumeBCH = integrator.volumeBCH.plus(tx.amount);
9999
integrator.lockedBCH = integrator.lockedBCH.plus(tx.amount);

src/btcGateway.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
import { BigInt, Bytes } from "@graphprotocol/graph-ts";
44

55
import { Gateway } from "../generated/BTCGateway/Gateway";
6-
import { Transaction } from "../generated/schema";
6+
import { Integrator, Transaction } from "../generated/schema";
77
import { BurnCall, MintCall } from "../generated/ZECGateway/Gateway";
88
import {
99
getIntegrator,
1010
getIntegratorContract,
1111
getRenVM,
12-
one,
12+
one
1313
} from "./utils/common";
1414

1515
export function handleMint(call: MintCall): void {
@@ -39,7 +39,7 @@ export function handleMint(call: MintCall): void {
3939
// Check that the mint hasn't been submitted directly by an account
4040
if (!call.transaction.to.equals(gateway._address)) {
4141
if (tx.integrator !== null) {
42-
let integrator = getIntegrator(tx.integrator as Bytes);
42+
let integrator: Integrator = getIntegrator(tx.integrator as Bytes);
4343
integrator.txCountBTC = integrator.txCountBTC.plus(one());
4444
integrator.volumeBTC = integrator.volumeBTC.plus(tx.amount);
4545
integrator.lockedBTC = integrator.lockedBTC.plus(tx.amount);
@@ -95,7 +95,7 @@ export function handleBurn(call: BurnCall): void {
9595

9696
// Check that the burn hasn't been submitted directly by an account
9797
if (!call.transaction.to.equals(gateway._address)) {
98-
let integrator = getIntegrator(tx.integrator as Bytes);
98+
let integrator: Integrator = getIntegrator(tx.integrator as Bytes);
9999
integrator.txCountBTC = integrator.txCountBTC.plus(one());
100100
integrator.volumeBTC = integrator.volumeBTC.plus(tx.amount);
101101
integrator.lockedBTC = integrator.lockedBTC.plus(tx.amount);

src/zecGateway.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
import { BigInt, Bytes } from "@graphprotocol/graph-ts";
44

5-
import { Transaction } from "../generated/schema";
5+
import { Integrator, Transaction } from "../generated/schema";
66
import { BurnCall, Gateway, MintCall } from "../generated/ZECGateway/Gateway";
77
import {
88
getIntegrator,
99
getIntegratorContract,
1010
getRenVM,
11-
one,
11+
one
1212
} from "./utils/common";
1313

1414
export function handleMint(call: MintCall): void {
@@ -37,7 +37,7 @@ export function handleMint(call: MintCall): void {
3737

3838
if (!call.transaction.to.equals(gateway._address)) {
3939
if (tx.integrator !== null) {
40-
let integrator = getIntegrator(tx.integrator as Bytes);
40+
let integrator: Integrator = getIntegrator(tx.integrator as Bytes);
4141
integrator.txCountZEC = integrator.txCountZEC.plus(one());
4242
integrator.volumeZEC = integrator.volumeZEC.plus(tx.amount);
4343
integrator.lockedZEC = integrator.lockedZEC.plus(tx.amount);
@@ -93,7 +93,7 @@ export function handleBurn(call: BurnCall): void {
9393

9494
// Check that the burn hasn't been submitted directly by an account
9595
if (!call.transaction.to.equals(gateway._address)) {
96-
let integrator = getIntegrator(tx.integrator as Bytes);
96+
let integrator: Integrator = getIntegrator(tx.integrator as Bytes);
9797
integrator.txCountZEC = integrator.txCountZEC.plus(one());
9898
integrator.volumeZEC = integrator.volumeZEC.plus(tx.amount);
9999
integrator.lockedZEC = integrator.lockedZEC.plus(tx.amount);

0 commit comments

Comments
 (0)