diff --git a/packages/sdk/test/script/examples/router/timeSpotPrice.ts b/packages/sdk/test/script/examples/router/timeSpotPrice.ts new file mode 100644 index 00000000..eb8da3d2 --- /dev/null +++ b/packages/sdk/test/script/examples/router/timeSpotPrice.ts @@ -0,0 +1,21 @@ +import {ApiPromise} from '@polkadot/api'; +import {ApiUrl, PolkadotExecutor} from '../../executor'; +import {PoolService} from '../../../../src/pool'; +import {TradeRouter} from '../../../../src/api'; +import {PoolType} from '../../../../src/types'; + +class GetBestSpotPriceExample extends PolkadotExecutor { + async script(api: ApiPromise): Promise { + const poolService = new PoolService(api); + const router = new TradeRouter(poolService, { includeOnly: [PoolType.Omni, PoolType.Stable] }); + let result; + console.time('Get best spot price with LBP 10x') + for (let i = 0; i < 10; i++) { + result = await router.getBestSpotPrice('5', '2'); + } + console.timeEnd('Get best spot price with LBP 10x') + return result; + } +} + +new GetBestSpotPriceExample(ApiUrl.HydraDx, 'Get best spot price', true).run();