/
mustreets
/
CreateTransactions
Обзор
Документация
Войти
/
mustreets
/
CreateTransactions
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
test/testConfig.ts
14 строк
507 B
Slava
Initialize project with essential configurations and structures
14 май 2026, 22:23
14 май 2026, 22:23
a89cd26
Код
Авторство
О чём код?
/** * Конфигурация сценариев для configuration-driven тестов (провайдеры, суммы). */ export const testWalletConfig = { amounts: { minPrecision: "0.000000000000000001", oneEthWei: "1000000000000000000", small: "100", }, providers: [ { delayMs: 0 as number | undefined, expectedBehavior: "instant" as const, type: "software" as const }, { delayMs: 50, expectedBehavior: "delayed" as const, type: "hardware" as const }, ], } as const;