File tree Expand file tree Collapse file tree 6 files changed +9
-6
lines changed
apps/interface/src/lib/components Expand file tree Collapse file tree 6 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 22 import { lib } from " $lib" ;
33 import { requestRollup } from " $lib/utils" ;
44 import { sdk } from " @repo/contracts/sdk" ;
5- import { TokenAmount } from " @repo/contracts/sdk/RollupService " ;
5+ import { TokenAmount } from " @repo/contracts/sdk/PoolErc20Service " ;
66 import { Ui } from " @repo/ui" ;
77 import { utils } from " @repo/utils" ;
88 import { assert } from " ts-essentials" ;
Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ import type { Fr } from "@aztec/aztec.js";
22import type { StandardIndexedTree } from "@aztec/merkle-tree" ;
33import { ethers } from "ethers" ;
44import { assert } from "ts-essentials" ;
5- import { INCLUDE_UNCOMMITTED , NULLIFIER_SUBTREE_HEIGHT } from "./RollupService" ;
5+ import {
6+ INCLUDE_UNCOMMITTED ,
7+ NULLIFIER_SUBTREE_HEIGHT ,
8+ } from "./PoolErc20Service" ;
69
710export class NonMembershipTree {
811 private constructor ( readonly _tree : StandardIndexedTree ) { }
File renamed without changes.
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {
1111 MAX_NULLIFIERS_PER_ROLLUP ,
1212 NOTE_HASH_SUBTREE_HEIGHT ,
1313 type NoirAndBackend ,
14- } from "./RollupService " ;
14+ } from "./PoolErc20Service " ;
1515import type { TreesService } from "./TreesService" ;
1616import { prove } from "./utils.js" ;
1717
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {
1111 MAX_NULLIFIERS_PER_ROLLUP ,
1212 NOTE_HASH_TREE_HEIGHT ,
1313 NULLIFIER_TREE_HEIGHT ,
14- } from "./RollupService " ;
14+ } from "./PoolErc20Service " ;
1515
1616export class TreesService {
1717 constructor ( private contract : PoolERC20 ) { }
Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ import { mapValues } from "lodash-es";
33import type { AsyncOrSync } from "ts-essentials" ;
44import type { PoolERC20 } from "../typechain-types/index.js" ;
55import { EncryptionService } from "./EncryptionService.js" ;
6+ import { PoolErc20Service } from "./PoolErc20Service.js" ;
67import { type ITreesService } from "./RemoteTreesService.js" ;
7- import { PoolErc20Service } from "./RollupService.js" ;
88
99export * from "./EncryptionService.js" ;
1010export * from "./NonMembershipTree.js" ;
11+ export * from "./PoolErc20Service.js" ;
1112export * from "./RemoteTreesService.js" ;
12- export * from "./RollupService.js" ;
1313export * from "./TreesService.js" ;
1414
1515export function createCoreSdk ( contract : PoolERC20 ) {
You can’t perform that action at this time.
0 commit comments