-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.ts
27 lines (24 loc) · 1.69 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
export type { ERC20 } from "./typechain/ERC20";
export type { BalancerExternalTokenRouter } from "./typechain/BalancerExternalTokenRouter";
export type { BalancerTokenRouter } from "./typechain/BalancerTokenRouter";
export type { UniswapAnchoredView } from "./typechain/UniswapAnchoredView";
export type { GyroFund } from "./typechain/GyroFund";
export type { GyroFundV1 } from "./typechain/GyroFundV1";
export type { GyroLib } from "./typechain/GyroLib";
export type { GyroPriceOracle } from "./typechain/GyroPriceOracle";
export type { GyroRouter } from "./typechain/GyroRouter";
export type { BPool } from "./typechain/BPool";
export type { MetaFaucet } from "./typechain/MetaFaucet";
export { ERC20__factory } from "./typechain/factories/ERC20__factory";
export { BalancerExternalTokenRouter__factory } from "./typechain/factories/BalancerExternalTokenRouter__factory";
export { BalancerTokenRouter__factory } from "./typechain/factories/BalancerTokenRouter__factory";
export { UniswapAnchoredView__factory } from "./typechain/factories/UniswapAnchoredView__factory";
export { GyroFund__factory } from "./typechain/factories/GyroFund__factory";
export { GyroFundV1__factory } from "./typechain/factories/GyroFundV1__factory";
export { GyroLib__factory } from "./typechain/factories/GyroLib__factory";
export { GyroPriceOracle__factory } from "./typechain/factories/GyroPriceOracle__factory";
export { GyroRouter__factory } from "./typechain/factories/GyroRouter__factory";
export { BPool__factory } from "./typechain/factories/BPool__factory";
export { MetaFaucet__factory } from "./typechain/factories/MetaFaucet__factory";
import _deployment from "./deployments/metadata.json";
export const deployment = _deployment;