@aztec/end-to-end 0.0.1-commit.6c91f13 → 0.0.1-commit.6d3c34e
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/bench/client_flows/client_flows_benchmark.js +1 -1
- package/dest/bench/client_flows/data_extractor.js +3 -1
- package/dest/bench/utils.d.ts +4 -4
- package/dest/bench/utils.d.ts.map +1 -1
- package/dest/bench/utils.js +8 -5
- package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.d.ts +10 -4
- package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.d.ts.map +1 -1
- package/dest/e2e_cross_chain_messaging/cross_chain_messaging_test.js +34 -18
- package/dest/e2e_epochs/epochs_test.js +1 -1
- package/dest/e2e_fees/fees_test.d.ts +1 -1
- package/dest/e2e_fees/fees_test.d.ts.map +1 -1
- package/dest/e2e_fees/fees_test.js +3 -3
- package/dest/e2e_l1_publisher/write_json.d.ts +1 -1
- package/dest/e2e_l1_publisher/write_json.d.ts.map +1 -1
- package/dest/e2e_l1_publisher/write_json.js +2 -5
- package/dest/e2e_p2p/p2p_network.js +1 -1
- package/dest/e2e_p2p/shared.d.ts +1 -1
- package/dest/e2e_p2p/shared.d.ts.map +1 -1
- package/dest/e2e_p2p/shared.js +4 -4
- package/dest/fixtures/e2e_prover_test.d.ts +1 -1
- package/dest/fixtures/e2e_prover_test.d.ts.map +1 -1
- package/dest/fixtures/e2e_prover_test.js +1 -2
- package/dest/fixtures/snapshot_manager.d.ts +1 -1
- package/dest/fixtures/snapshot_manager.d.ts.map +1 -1
- package/dest/fixtures/snapshot_manager.js +2 -7
- package/dest/fixtures/utils.d.ts +1 -4
- package/dest/fixtures/utils.d.ts.map +1 -1
- package/dest/fixtures/utils.js +1 -5
- package/dest/quality_of_service/grafana_client.d.ts +41 -0
- package/dest/quality_of_service/grafana_client.d.ts.map +1 -0
- package/dest/quality_of_service/{alert_checker.js → grafana_client.js} +1 -1
- package/dest/shared/cross_chain_test_harness.d.ts +3 -3
- package/dest/shared/cross_chain_test_harness.d.ts.map +1 -1
- package/dest/shared/cross_chain_test_harness.js +2 -2
- package/dest/shared/index.d.ts +2 -2
- package/dest/shared/index.d.ts.map +1 -1
- package/dest/shared/uniswap_l1_l2.d.ts +3 -28
- package/dest/shared/uniswap_l1_l2.d.ts.map +1 -1
- package/dest/shared/uniswap_l1_l2.js +39 -21
- package/dest/spartan/setup_test_wallets.d.ts +4 -3
- package/dest/spartan/setup_test_wallets.d.ts.map +1 -1
- package/package.json +38 -38
- package/src/bench/client_flows/client_flows_benchmark.ts +1 -1
- package/src/bench/client_flows/data_extractor.ts +1 -1
- package/src/bench/utils.ts +11 -7
- package/src/e2e_cross_chain_messaging/cross_chain_messaging_test.ts +40 -22
- package/src/e2e_epochs/epochs_test.ts +1 -1
- package/src/e2e_fees/fees_test.ts +3 -5
- package/src/e2e_l1_publisher/write_json.ts +2 -5
- package/src/e2e_p2p/p2p_network.ts +1 -1
- package/src/e2e_p2p/shared.ts +6 -5
- package/src/fixtures/e2e_prover_test.ts +0 -1
- package/src/fixtures/snapshot_manager.ts +2 -7
- package/src/fixtures/utils.ts +2 -8
- package/src/quality_of_service/{alert_checker.ts → grafana_client.ts} +1 -1
- package/src/shared/cross_chain_test_harness.ts +3 -9
- package/src/shared/index.ts +1 -1
- package/src/shared/uniswap_l1_l2.ts +46 -58
- package/src/spartan/setup_test_wallets.ts +7 -1
- package/dest/quality_of_service/alert_checker.d.ts +0 -41
- package/dest/quality_of_service/alert_checker.d.ts.map +0 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AztecAddress, EthAddress } from '@aztec/aztec.js/addresses';
|
|
2
2
|
import { computeAuthWitMessageHash } from '@aztec/aztec.js/authorization';
|
|
3
|
+
import { waitForProven } from '@aztec/aztec.js/contracts';
|
|
3
4
|
import { generateClaimSecret } from '@aztec/aztec.js/ethereum';
|
|
4
5
|
import { Fr } from '@aztec/aztec.js/fields';
|
|
5
6
|
import type { Logger } from '@aztec/aztec.js/log';
|
|
@@ -10,6 +11,7 @@ import type { DeployAztecL1ContractsReturnType } from '@aztec/ethereum/deploy-az
|
|
|
10
11
|
import { deployL1Contract } from '@aztec/ethereum/deploy-l1-contract';
|
|
11
12
|
import type { ExtendedViemWalletClient } from '@aztec/ethereum/types';
|
|
12
13
|
import { extractEvent } from '@aztec/ethereum/utils';
|
|
14
|
+
import { CheckpointNumber, EpochNumber } from '@aztec/foundation/branded-types';
|
|
13
15
|
import { sha256ToField } from '@aztec/foundation/crypto/sha256';
|
|
14
16
|
import { InboxAbi, UniswapPortalAbi, UniswapPortalBytecode } from '@aztec/l1-artifacts';
|
|
15
17
|
import { UniswapContract } from '@aztec/noir-contracts.js/Uniswap';
|
|
@@ -20,7 +22,7 @@ import type { TestWallet } from '@aztec/test-wallet/server';
|
|
|
20
22
|
import { jest } from '@jest/globals';
|
|
21
23
|
import { type GetContractReturnType, getContract, parseEther, toFunctionSelector } from 'viem';
|
|
22
24
|
|
|
23
|
-
import { ensureAccountContractsPublished } from '../fixtures/utils.js';
|
|
25
|
+
import { type EndToEndContext, ensureAccountContractsPublished } from '../fixtures/utils.js';
|
|
24
26
|
import { CrossChainTestHarness } from './cross_chain_test_harness.js';
|
|
25
27
|
|
|
26
28
|
// PSA: This tests works on forked mainnet. There is a dump of the data in `dumpedState` such that we
|
|
@@ -32,28 +34,8 @@ import { CrossChainTestHarness } from './cross_chain_test_harness.js';
|
|
|
32
34
|
|
|
33
35
|
const TIMEOUT = 360_000;
|
|
34
36
|
|
|
35
|
-
/** Objects to be returned by the uniswap setup function */
|
|
36
|
-
export type UniswapSetupContext = {
|
|
37
|
-
/** Aztec Node instance */
|
|
38
|
-
aztecNode: AztecNode;
|
|
39
|
-
/** Logger instance named as the current test. */
|
|
40
|
-
logger: Logger;
|
|
41
|
-
/** The L1 wallet client, extended with public actions. */
|
|
42
|
-
l1Client: ExtendedViemWalletClient;
|
|
43
|
-
/** The wallet. */
|
|
44
|
-
wallet: TestWallet;
|
|
45
|
-
/** The owner address. */
|
|
46
|
-
ownerAddress: AztecAddress;
|
|
47
|
-
/** The sponsor wallet. */
|
|
48
|
-
sponsorAddress: AztecAddress;
|
|
49
|
-
/** */
|
|
50
|
-
deployL1ContractsValues: DeployAztecL1ContractsReturnType;
|
|
51
|
-
/** Cheat codes instance. */
|
|
52
|
-
cheatCodes: CheatCodes;
|
|
53
|
-
};
|
|
54
|
-
|
|
55
37
|
export const uniswapL1L2TestSuite = (
|
|
56
|
-
setup: () => Promise<
|
|
38
|
+
setup: () => Promise<EndToEndContext>,
|
|
57
39
|
cleanup: () => Promise<void>,
|
|
58
40
|
expectedForkBlockNumber = 17514288,
|
|
59
41
|
) => {
|
|
@@ -90,8 +72,19 @@ export const uniswapL1L2TestSuite = (
|
|
|
90
72
|
let cheatCodes: CheatCodes;
|
|
91
73
|
let version: number;
|
|
92
74
|
beforeAll(async () => {
|
|
93
|
-
|
|
94
|
-
|
|
75
|
+
const t = await setup();
|
|
76
|
+
({
|
|
77
|
+
aztecNode,
|
|
78
|
+
logger,
|
|
79
|
+
deployL1ContractsValues,
|
|
80
|
+
cheatCodes,
|
|
81
|
+
wallet,
|
|
82
|
+
accounts: [ownerAddress, sponsorAddress],
|
|
83
|
+
} = t);
|
|
84
|
+
|
|
85
|
+
l1Client = deployL1ContractsValues.l1Client;
|
|
86
|
+
|
|
87
|
+
t.watcher?.setIsMarkingAsProven(false);
|
|
95
88
|
|
|
96
89
|
if (Number(await l1Client.getBlockNumber()) < expectedForkBlockNumber) {
|
|
97
90
|
throw new Error('This test must be run on a fork of mainnet with the expected fork block');
|
|
@@ -259,24 +252,19 @@ export const uniswapL1L2TestSuite = (
|
|
|
259
252
|
// ensure that uniswap contract didn't eat the funds.
|
|
260
253
|
await wethCrossChainHarness.expectPublicBalanceOnL2(uniswapL2Contract.address, 0n);
|
|
261
254
|
|
|
262
|
-
// Since the outbox is only consumable when the
|
|
263
|
-
|
|
255
|
+
// Since the outbox is only consumable when the epoch is proven, we need to advance to the next epoch.
|
|
256
|
+
const checkpointNumber = CheckpointNumber.fromBlockNumber(l2UniswapInteractionReceipt.blockNumber!);
|
|
257
|
+
const epoch = await rollup.getEpochNumberForCheckpoint(checkpointNumber);
|
|
258
|
+
await cheatCodes.rollup.advanceToEpoch(EpochNumber(epoch + 1));
|
|
259
|
+
await waitForProven(aztecNode, l2UniswapInteractionReceipt, { provenTimeout: 300 });
|
|
264
260
|
|
|
265
261
|
// 5. Consume L2 to L1 message by calling uniswapPortal.swap_private()
|
|
266
262
|
logger.info('Execute withdraw and swap on the uniswapPortal!');
|
|
267
263
|
const daiL1BalanceOfPortalBeforeSwap = await daiCrossChainHarness.getL1BalanceOf(
|
|
268
264
|
daiCrossChainHarness.tokenPortalAddress,
|
|
269
265
|
);
|
|
270
|
-
const swapResult = await computeL2ToL1MembershipWitness(
|
|
271
|
-
|
|
272
|
-
l2UniswapInteractionReceipt.blockNumber!,
|
|
273
|
-
swapPrivateLeaf,
|
|
274
|
-
);
|
|
275
|
-
const withdrawResult = await computeL2ToL1MembershipWitness(
|
|
276
|
-
aztecNode,
|
|
277
|
-
l2UniswapInteractionReceipt.blockNumber!,
|
|
278
|
-
withdrawLeaf,
|
|
279
|
-
);
|
|
266
|
+
const swapResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, swapPrivateLeaf);
|
|
267
|
+
const withdrawResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, withdrawLeaf);
|
|
280
268
|
|
|
281
269
|
const swapPrivateL2MessageIndex = swapResult!.leafIndex;
|
|
282
270
|
const swapPrivateSiblingPath = swapResult!.siblingPath;
|
|
@@ -285,7 +273,7 @@ export const uniswapL1L2TestSuite = (
|
|
|
285
273
|
const withdrawSiblingPath = withdrawResult!.siblingPath;
|
|
286
274
|
|
|
287
275
|
const withdrawMessageMetadata = {
|
|
288
|
-
|
|
276
|
+
_epoch: BigInt(epoch),
|
|
289
277
|
_leafIndex: BigInt(withdrawL2MessageIndex),
|
|
290
278
|
_path: withdrawSiblingPath
|
|
291
279
|
.toBufferArray()
|
|
@@ -293,7 +281,7 @@ export const uniswapL1L2TestSuite = (
|
|
|
293
281
|
};
|
|
294
282
|
|
|
295
283
|
const swapPrivateMessageMetadata = {
|
|
296
|
-
|
|
284
|
+
_epoch: BigInt(epoch),
|
|
297
285
|
_leafIndex: BigInt(swapPrivateL2MessageIndex),
|
|
298
286
|
_path: swapPrivateSiblingPath
|
|
299
287
|
.toBufferArray()
|
|
@@ -504,7 +492,7 @@ export const uniswapL1L2TestSuite = (
|
|
|
504
492
|
// );
|
|
505
493
|
|
|
506
494
|
// const withdrawMessageMetadata = {
|
|
507
|
-
//
|
|
495
|
+
// _epoch: epoch,
|
|
508
496
|
// _leafIndex: BigInt(withdrawL2MessageIndex),
|
|
509
497
|
// _path: withdrawSiblingPath
|
|
510
498
|
// .toBufferArray()
|
|
@@ -512,7 +500,7 @@ export const uniswapL1L2TestSuite = (
|
|
|
512
500
|
// };
|
|
513
501
|
|
|
514
502
|
// const swapPrivateMessageMetadata = {
|
|
515
|
-
//
|
|
503
|
+
// _epoch: epoch,
|
|
516
504
|
// _leafIndex: BigInt(swapPrivateL2MessageIndex),
|
|
517
505
|
// _path: swapPrivateSiblingPath
|
|
518
506
|
// .toBufferArray()
|
|
@@ -856,12 +844,11 @@ export const uniswapL1L2TestSuite = (
|
|
|
856
844
|
chainId: new Fr(l1Client.chain.id),
|
|
857
845
|
});
|
|
858
846
|
|
|
859
|
-
const
|
|
860
|
-
|
|
861
|
-
aztecNode,
|
|
862
|
-
withdrawReceipt.blockNumber!,
|
|
863
|
-
withdrawLeaf,
|
|
847
|
+
const epoch = await rollup.getEpochNumberForCheckpoint(
|
|
848
|
+
CheckpointNumber.fromBlockNumber(withdrawReceipt.blockNumber!),
|
|
864
849
|
);
|
|
850
|
+
const swapResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, swapPrivateLeaf);
|
|
851
|
+
const withdrawResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, withdrawLeaf);
|
|
865
852
|
|
|
866
853
|
const swapPrivateL2MessageIndex = swapResult!.leafIndex;
|
|
867
854
|
const swapPrivateSiblingPath = swapResult!.siblingPath;
|
|
@@ -870,7 +857,7 @@ export const uniswapL1L2TestSuite = (
|
|
|
870
857
|
const withdrawSiblingPath = withdrawResult!.siblingPath;
|
|
871
858
|
|
|
872
859
|
const withdrawMessageMetadata = {
|
|
873
|
-
|
|
860
|
+
_epoch: BigInt(epoch),
|
|
874
861
|
_leafIndex: BigInt(withdrawL2MessageIndex),
|
|
875
862
|
_path: withdrawSiblingPath
|
|
876
863
|
.toBufferArray()
|
|
@@ -878,7 +865,7 @@ export const uniswapL1L2TestSuite = (
|
|
|
878
865
|
};
|
|
879
866
|
|
|
880
867
|
const swapPrivateMessageMetadata = {
|
|
881
|
-
|
|
868
|
+
_epoch: BigInt(epoch),
|
|
882
869
|
_leafIndex: BigInt(swapPrivateL2MessageIndex),
|
|
883
870
|
_path: swapPrivateSiblingPath
|
|
884
871
|
.toBufferArray()
|
|
@@ -888,8 +875,9 @@ export const uniswapL1L2TestSuite = (
|
|
|
888
875
|
// ensure that user's funds were burnt
|
|
889
876
|
await wethCrossChainHarness.expectPrivateBalanceOnL2(ownerAddress, wethL2BalanceBeforeSwap - wethAmountToBridge);
|
|
890
877
|
|
|
891
|
-
// Since the outbox is only consumable when the
|
|
892
|
-
await cheatCodes.rollup.
|
|
878
|
+
// Since the outbox is only consumable when the epoch is proven, we need to advance to the next epoch.
|
|
879
|
+
await cheatCodes.rollup.advanceToEpoch(EpochNumber(epoch + 1));
|
|
880
|
+
await waitForProven(aztecNode, withdrawReceipt, { provenTimeout: 300 });
|
|
893
881
|
|
|
894
882
|
// On L1 call swap_public!
|
|
895
883
|
logger.info('call swap_public on L1');
|
|
@@ -991,12 +979,11 @@ export const uniswapL1L2TestSuite = (
|
|
|
991
979
|
chainId: new Fr(l1Client.chain.id),
|
|
992
980
|
});
|
|
993
981
|
|
|
994
|
-
const
|
|
995
|
-
|
|
996
|
-
aztecNode,
|
|
997
|
-
withdrawReceipt.blockNumber!,
|
|
998
|
-
withdrawLeaf,
|
|
982
|
+
const epoch = await rollup.getEpochNumberForCheckpoint(
|
|
983
|
+
CheckpointNumber.fromBlockNumber(withdrawReceipt.blockNumber!),
|
|
999
984
|
);
|
|
985
|
+
const swapResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, swapPublicLeaf);
|
|
986
|
+
const withdrawResult = await computeL2ToL1MembershipWitness(aztecNode, epoch, withdrawLeaf);
|
|
1000
987
|
|
|
1001
988
|
const swapPublicL2MessageIndex = swapResult!.leafIndex;
|
|
1002
989
|
const swapPublicSiblingPath = swapResult!.siblingPath;
|
|
@@ -1005,7 +992,7 @@ export const uniswapL1L2TestSuite = (
|
|
|
1005
992
|
const withdrawSiblingPath = withdrawResult!.siblingPath;
|
|
1006
993
|
|
|
1007
994
|
const withdrawMessageMetadata = {
|
|
1008
|
-
|
|
995
|
+
_epoch: BigInt(epoch),
|
|
1009
996
|
_leafIndex: BigInt(withdrawL2MessageIndex),
|
|
1010
997
|
_path: withdrawSiblingPath
|
|
1011
998
|
.toBufferArray()
|
|
@@ -1013,7 +1000,7 @@ export const uniswapL1L2TestSuite = (
|
|
|
1013
1000
|
};
|
|
1014
1001
|
|
|
1015
1002
|
const swapPublicMessageMetadata = {
|
|
1016
|
-
|
|
1003
|
+
_epoch: BigInt(epoch),
|
|
1017
1004
|
_leafIndex: BigInt(swapPublicL2MessageIndex),
|
|
1018
1005
|
_path: swapPublicSiblingPath
|
|
1019
1006
|
.toBufferArray()
|
|
@@ -1023,8 +1010,9 @@ export const uniswapL1L2TestSuite = (
|
|
|
1023
1010
|
// check weth balance of owner on L2 (we first bridged `wethAmountToBridge` into L2 and now withdrew it!)
|
|
1024
1011
|
await wethCrossChainHarness.expectPublicBalanceOnL2(ownerAddress, 0n);
|
|
1025
1012
|
|
|
1026
|
-
// Since the outbox is only consumable when the
|
|
1027
|
-
await cheatCodes.rollup.
|
|
1013
|
+
// Since the outbox is only consumable when the epoch is proven, we need to advance to the next epoch.
|
|
1014
|
+
await cheatCodes.rollup.advanceToEpoch(EpochNumber(epoch + 1));
|
|
1015
|
+
await waitForProven(aztecNode, withdrawReceipt, { provenTimeout: 300 });
|
|
1028
1016
|
|
|
1029
1017
|
// Call swap_private on L1
|
|
1030
1018
|
logger.info('Execute withdraw and swap on the uniswapPortal!');
|
|
@@ -315,11 +315,17 @@ export async function performTransfers({
|
|
|
315
315
|
}
|
|
316
316
|
}
|
|
317
317
|
|
|
318
|
+
export type WalletWrapper = {
|
|
319
|
+
wallet: TestWallet;
|
|
320
|
+
aztecNode: AztecNode;
|
|
321
|
+
cleanup: () => Promise<void>;
|
|
322
|
+
};
|
|
323
|
+
|
|
318
324
|
export async function createWalletAndAztecNodeClient(
|
|
319
325
|
nodeUrl: string,
|
|
320
326
|
proverEnabled: boolean,
|
|
321
327
|
logger: Logger,
|
|
322
|
-
): Promise<
|
|
328
|
+
): Promise<WalletWrapper> {
|
|
323
329
|
const aztecNode = createAztecNodeClient(nodeUrl);
|
|
324
330
|
const [bbConfig, acvmConfig] = await Promise.all([getBBConfig(logger), getACVMConfig(logger)]);
|
|
325
331
|
const pxeConfig = {
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import type { Logger } from '@aztec/aztec.js/log';
|
|
2
|
-
export interface AlertConfig {
|
|
3
|
-
alert: string;
|
|
4
|
-
expr: string;
|
|
5
|
-
start?: number;
|
|
6
|
-
end?: number;
|
|
7
|
-
step?: number;
|
|
8
|
-
for: string;
|
|
9
|
-
labels: Record<string, string>;
|
|
10
|
-
annotations: Record<string, string>;
|
|
11
|
-
}
|
|
12
|
-
export interface AlertCheckerConfig {
|
|
13
|
-
grafanaEndpoint: string;
|
|
14
|
-
grafanaCredentials: string;
|
|
15
|
-
}
|
|
16
|
-
export declare class AlertChecker {
|
|
17
|
-
private config;
|
|
18
|
-
private logger;
|
|
19
|
-
constructor(logger: Logger, config?: Partial<AlertCheckerConfig>);
|
|
20
|
-
/**
|
|
21
|
-
* Load the alerts config from a file path.
|
|
22
|
-
* @param filePath - The absolute path to the alerts file.
|
|
23
|
-
*/
|
|
24
|
-
private loadAlertsConfig;
|
|
25
|
-
private queryGrafana;
|
|
26
|
-
private checkAlerts;
|
|
27
|
-
/**
|
|
28
|
-
* Run the alert check based on the alerts defined in an array.
|
|
29
|
-
* @param alerts - The alerts to check.
|
|
30
|
-
*/
|
|
31
|
-
runAlertCheck(alerts: AlertConfig[]): Promise<void>;
|
|
32
|
-
/**
|
|
33
|
-
* Run the alert check based on the alerts defined in a yaml file.
|
|
34
|
-
* @param filePath - The absolute path to the alerts file.
|
|
35
|
-
*/
|
|
36
|
-
runAlertCheckFromFilePath(filePath: string): Promise<void>;
|
|
37
|
-
}
|
|
38
|
-
export declare class AlertTriggeredError extends Error {
|
|
39
|
-
name: string;
|
|
40
|
-
}
|
|
41
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxlcnRfY2hlY2tlci5kLnRzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL3F1YWxpdHlfb2Zfc2VydmljZS9hbGVydF9jaGVja2VyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sS0FBSyxFQUFFLE1BQU0sRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBS2xELE1BQU0sV0FBVyxXQUFXO0lBQzFCLEtBQUssRUFBRSxNQUFNLENBQUM7SUFDZCxJQUFJLEVBQUUsTUFBTSxDQUFDO0lBQ2IsS0FBSyxDQUFDLEVBQUUsTUFBTSxDQUFDO0lBQ2YsR0FBRyxDQUFDLEVBQUUsTUFBTSxDQUFDO0lBQ2IsSUFBSSxDQUFDLEVBQUUsTUFBTSxDQUFDO0lBQ2QsR0FBRyxFQUFFLE1BQU0sQ0FBQztJQUNaLE1BQU0sRUFBRSxNQUFNLENBQUMsTUFBTSxFQUFFLE1BQU0sQ0FBQyxDQUFDO0lBQy9CLFdBQVcsRUFBRSxNQUFNLENBQUMsTUFBTSxFQUFFLE1BQU0sQ0FBQyxDQUFDO0NBQ3JDO0FBRUQsTUFBTSxXQUFXLGtCQUFrQjtJQUNqQyxlQUFlLEVBQUUsTUFBTSxDQUFDO0lBQ3hCLGtCQUFrQixFQUFFLE1BQU0sQ0FBQztDQUM1QjtBQVFELHFCQUFhLFlBQVk7SUFDdkIsT0FBTyxDQUFDLE1BQU0sQ0FBcUI7SUFDbkMsT0FBTyxDQUFDLE1BQU0sQ0FBUztJQUV2QixZQUFZLE1BQU0sRUFBRSxNQUFNLEVBQUUsTUFBTSxHQUFFLE9BQU8sQ0FBQyxrQkFBa0IsQ0FBTSxFQUduRTtJQUVEOzs7T0FHRztJQUNILE9BQU8sQ0FBQyxnQkFBZ0I7WUFNVixZQUFZO1lBcUNaLFdBQVc7SUFxQnpCOzs7T0FHRztJQUNVLGFBQWEsQ0FBQyxNQUFNLEVBQUUsV0FBVyxFQUFFLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxDQVEvRDtJQUVEOzs7T0FHRztJQUNVLHlCQUF5QixDQUFDLFFBQVEsRUFBRSxNQUFNLEdBQUcsT0FBTyxDQUFDLElBQUksQ0FBQyxDQUd0RTtDQUNGO0FBRUQscUJBQWEsbUJBQW9CLFNBQVEsS0FBSztJQUNuQyxJQUFJLFNBQXlCO0NBQ3ZDIn0=
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"alert_checker.d.ts","sourceRoot":"","sources":["../../src/quality_of_service/alert_checker.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAC;AAKlD,MAAM,WAAW,WAAW;IAC1B,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC/B,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CACrC;AAED,MAAM,WAAW,kBAAkB;IACjC,eAAe,EAAE,MAAM,CAAC;IACxB,kBAAkB,EAAE,MAAM,CAAC;CAC5B;AAQD,qBAAa,YAAY;IACvB,OAAO,CAAC,MAAM,CAAqB;IACnC,OAAO,CAAC,MAAM,CAAS;IAEvB,YAAY,MAAM,EAAE,MAAM,EAAE,MAAM,GAAE,OAAO,CAAC,kBAAkB,CAAM,EAGnE;IAED;;;OAGG;IACH,OAAO,CAAC,gBAAgB;YAMV,YAAY;YAqCZ,WAAW;IAqBzB;;;OAGG;IACU,aAAa,CAAC,MAAM,EAAE,WAAW,EAAE,GAAG,OAAO,CAAC,IAAI,CAAC,CAQ/D;IAED;;;OAGG;IACU,yBAAyB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAGtE;CACF;AAED,qBAAa,mBAAoB,SAAQ,KAAK;IACnC,IAAI,SAAyB;CACvC"}
|