@azuro-org/toolkit 4.2.2 → 4.3.1

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.
@@ -2,7 +2,8 @@ import * as Types from './types';
2
2
  import * as Apollo from '@apollo/client';
3
3
  export type NavigationQueryVariables = Types.Exact<{
4
4
  first?: Types.InputMaybe<Types.Scalars['Int']['input']>;
5
- where?: Types.InputMaybe<Types.Game_Filter>;
5
+ sportFilter?: Types.InputMaybe<Types.Sport_Filter>;
6
+ gameFilter?: Types.InputMaybe<Types.Game_Filter>;
6
7
  withGameCount: Types.Scalars['Boolean']['input'];
7
8
  }>;
8
9
  export type NavigationQuery = {
@@ -12,6 +13,7 @@ export type NavigationQuery = {
12
13
  id: string;
13
14
  slug: string;
14
15
  name: string;
16
+ sportId: string;
15
17
  countries: Array<{
16
18
  __typename?: 'Country';
17
19
  id: string;
@@ -13,8 +13,10 @@ export type SportsQuery = {
13
13
  __typename?: 'Query';
14
14
  sports: Array<{
15
15
  __typename?: 'Sport';
16
+ id: string;
16
17
  slug: string;
17
18
  name: string;
19
+ sportId: string;
18
20
  countries: Array<{
19
21
  __typename?: 'Country';
20
22
  slug: string;
@@ -2,7 +2,8 @@ import * as Types from './types';
2
2
  import * as Apollo from '@apollo/client';
3
3
  export type SportsNavigationQueryVariables = Types.Exact<{
4
4
  first?: Types.InputMaybe<Types.Scalars['Int']['input']>;
5
- where?: Types.InputMaybe<Types.Game_Filter>;
5
+ sportFilter?: Types.InputMaybe<Types.Sport_Filter>;
6
+ gameFilter?: Types.InputMaybe<Types.Game_Filter>;
6
7
  withGameCount: Types.Scalars['Boolean']['input'];
7
8
  }>;
8
9
  export type SportsNavigationQuery = {
@@ -12,6 +13,7 @@ export type SportsNavigationQuery = {
12
13
  id: string;
13
14
  slug: string;
14
15
  name: string;
16
+ sportId: string;
15
17
  games?: Array<{
16
18
  __typename?: 'Game';
17
19
  id: string;
package/dist/index.d.ts CHANGED
@@ -20,6 +20,6 @@ export { getWavePeriods, type WavePeriodsResponse } from './utils/wave/getWavePe
20
20
  export { getWaveLeaderBoard, type WaveLeaderBoardItem } from './utils/wave/getWaveLeaderBoard';
21
21
  export { activateWave } from './utils/wave/activateWave';
22
22
  export { createDeBridgeBet, type DeBridgeCreateTxResponse } from './utils/deBridge/createDeBridgeBet';
23
- export { getDeBridgeSupportedChains } from './utils/deBridge/getDeBridgeSupportedChains';
24
- export { getDeBridgeSupportedTokens } from './utils/deBridge/getDeBridgeSupportedTokens';
23
+ export { getDeBridgeSupportedChains, deBridgeChainIdByOriginalChainId, type DeBridgeSupportedChains } from './utils/deBridge/getDeBridgeSupportedChains';
24
+ export { getDeBridgeSupportedTokens, type DeBridgeSupportedTokens } from './utils/deBridge/getDeBridgeSupportedTokens';
25
25
  export { getDeBridgeOrder, DeBridgeOrderStatus, DeBridgeExternalCallStatus } from './utils/deBridge/getDeBridgeOrder';
package/dist/index.js CHANGED
@@ -4379,20 +4379,21 @@ const chainsDataByEnv = {
4379
4379
  }
4380
4380
  }
4381
4381
  ${LiveBetFragmentDoc}`;const NavigationDocument = gql `
4382
- query Navigation($first: Int, $where: Game_filter, $withGameCount: Boolean!) {
4383
- sports(subgraphError: allow) {
4382
+ query Navigation($first: Int, $sportFilter: Sport_filter, $gameFilter: Game_filter, $withGameCount: Boolean!) {
4383
+ sports(where: $sportFilter, subgraphError: allow) {
4384
4384
  id
4385
4385
  slug
4386
4386
  name
4387
+ sportId
4387
4388
  countries(where: {hasActiveLeagues: true}) {
4388
4389
  id
4389
4390
  slug
4390
4391
  name
4391
- leagues(where: {games_: $where}) {
4392
+ leagues(where: {games_: $gameFilter}) {
4392
4393
  id
4393
4394
  slug
4394
4395
  name
4395
- games(first: $first, where: $where) @include(if: $withGameCount) {
4396
+ games(first: $first, where: $gameFilter) @include(if: $withGameCount) {
4396
4397
  id
4397
4398
  }
4398
4399
  }
@@ -4415,8 +4416,10 @@ const chainsDataByEnv = {
4415
4416
  ${PrematchBetFragmentDoc}`;const SportsDocument = gql `
4416
4417
  query Sports($first: Int, $sportFilter: Sport_filter, $countryFilter: Country_filter, $leagueFilter: League_filter, $gameFilter: Game_filter, $gameOrderBy: Game_orderBy, $gameOrderDirection: OrderDirection) {
4417
4418
  sports(where: $sportFilter, subgraphError: allow) {
4419
+ id
4418
4420
  slug
4419
4421
  name
4422
+ sportId
4420
4423
  countries(where: $countryFilter, orderBy: turnover, orderDirection: desc) {
4421
4424
  slug
4422
4425
  name
@@ -4439,12 +4442,13 @@ const chainsDataByEnv = {
4439
4442
  }
4440
4443
  }
4441
4444
  ${MainGameInfoFragmentDoc}`;const SportsNavigationDocument = gql `
4442
- query SportsNavigation($first: Int, $where: Game_filter, $withGameCount: Boolean!) {
4443
- sports(subgraphError: allow) {
4445
+ query SportsNavigation($first: Int, $sportFilter: Sport_filter, $gameFilter: Game_filter, $withGameCount: Boolean!) {
4446
+ sports(where: $sportFilter, subgraphError: allow) {
4444
4447
  id
4445
4448
  slug
4446
4449
  name
4447
- games(first: $first, where: $where) @include(if: $withGameCount) {
4450
+ sportId
4451
+ games(first: $first, where: $gameFilter) @include(if: $withGameCount) {
4448
4452
  id
4449
4453
  }
4450
4454
  }
@@ -5674,6 +5678,23 @@ const getWaveLevels = async ({ waveId, chainId } = { waveId: 'active', chainId:
5674
5678
  const api = getApiEndpoint(chainId);
5675
5679
  const response = await fetch(`${api}/waves/${waveId}/participants/${account?.toLowerCase()}/activate`);
5676
5680
  await response.json();
5681
+ };const deBridgeChainIdByOriginalChainId = {
5682
+ 245022934: 100000001, // Neon
5683
+ 100: 100000002, // Gnosis
5684
+ 1890: 100000003, // LightLink
5685
+ 1088: 100000004, // Metis
5686
+ 7171: 100000005, // Bitrock
5687
+ };
5688
+ const getDeBridgeSupportedChains = async () => {
5689
+ const response = await fetch(`${deBridgeUrl}/supported-chains-info`);
5690
+ if (response.status === 404) {
5691
+ return null;
5692
+ }
5693
+ if (!response.ok) {
5694
+ throw new Error(`Status ${response.status}: ${response.statusText}`);
5695
+ }
5696
+ const { chains } = await response.json();
5697
+ return chains;
5677
5698
  };const DE_BRIDGE_DEFAULT_DEADLINE = 300; // 5 min
5678
5699
  const createDeBridgeBet = async (props) => {
5679
5700
  const { account, betAmount, dstChainId, selections, totalOdds, slippage, srcChainId, srcChainTokenIn, affiliate, referralCode, deadline, } = props;
@@ -5686,10 +5707,10 @@ const createDeBridgeBet = async (props) => {
5686
5707
  const rawMinOdds = parseUnits(fixedMinOdds, ODDS_DECIMALS);
5687
5708
  const rawDeadline = BigInt(Math.floor(Date.now() / 1000) + (deadline || DE_BRIDGE_DEFAULT_DEADLINE));
5688
5709
  const params = new URLSearchParams({
5689
- dstChainId: String(dstChainId),
5710
+ dstChainId: String(deBridgeChainIdByOriginalChainId[dstChainId] || dstChainId),
5690
5711
  srcChainOrderAuthorityAddress: account,
5691
5712
  prependOperatingExpenses: 'false',
5692
- srcChainId: String(srcChainId),
5713
+ srcChainId: String(deBridgeChainIdByOriginalChainId[srcChainId] || srcChainId),
5693
5714
  srcChainTokenIn,
5694
5715
  srcChainTokenInAmount: 'auto',
5695
5716
  dstChainTokenOut: betToken.address,
@@ -5728,16 +5749,6 @@ const createDeBridgeBet = async (props) => {
5728
5749
  }
5729
5750
  const data = await response.json();
5730
5751
  return data;
5731
- };const getDeBridgeSupportedChains = async () => {
5732
- const response = await fetch(`${deBridgeUrl}/supported-chains-info`);
5733
- if (response.status === 404) {
5734
- return null;
5735
- }
5736
- if (!response.ok) {
5737
- throw new Error(`Status ${response.status}: ${response.statusText}`);
5738
- }
5739
- const { chains } = await response.json();
5740
- return chains;
5741
5752
  };const getDeBridgeSupportedTokens = async (chainId) => {
5742
5753
  const response = await fetch(`${deBridgeUrl}/token-list?chainId=${chainId}`);
5743
5754
  if (response.status === 404) {
@@ -5779,4 +5790,4 @@ const getDeBridgeOrder = async (orderId) => {
5779
5790
  }
5780
5791
  const data = await response.json();
5781
5792
  return data;
5782
- };export{BetResult,BetStatus,Bet_OrderBy,BettorFragmentDoc,BettorsDocument,ConditionStatus$1 as ConditionStatus,DeBridgeExternalCallStatus,DeBridgeOrderStatus,Environment,FreeBetStatus,GameBetsDocument,GameDocument,GameStatus,Game_OrderBy$1 as Game_OrderBy,GamesDocument,BetStatus$1 as GraphBetStatus,LiveBetFragmentDoc,LiveBetsDocument,LiveConditionDocument,LiveConditionFragmentDoc,LiveConditionsDocument,GameStatus$1 as LiveGraphGameStatus,MARGIN_DECIMALS,MIN_LIVE_BET_AMOUNT,MainGameInfoFragmentDoc,NavigationDocument,ODDS_DECIMALS,OrderDirection$1 as OrderDirection,PrematchBetFragmentDoc,PrematchBetsDocument,PrematchConditionDocument,PrematchConditionFragmentDoc,PrematchConditionsBatchDocument,PrematchConditionsDocument,GameStatus$2 as PrematchGraphGameStatus,SelectionResult$1 as SelectionResult,SportsDocument,SportsNavigationDocument,WaveLevelName,activateWave,calcLiveOdds,calcMindOdds,calcPrematchOdds,chainsData,chainsDataByEnv,createDeBridgeBet,deBridgeTxUrl,deBridgeUrl,environments,FreeBet as freeBetAbi,getApiEndpoint,getBetStatus,getDeBridgeOrder,getDeBridgeSupportedChains,getDeBridgeSupportedTokens,getFreeBets,getGameStatus,getLiveBetFee,getLiveGraphqlEndpoint,getPrematchBetDataBytes,getPrematchGraphqlEndpoint,getSocketEndpoint,getWaveLeaderBoard,getWaveLevels,getWavePeriods,getWaveStats,groupByConditionId,groupConditionsByMarket,liveCoreAbi,liveHostAddress,liveSupportedChains,lpAbi,prematchComboCoreAbi,prematchCoreAbi,proxyFrontAbi,setupContracts};
5793
+ };export{BetResult,BetStatus,Bet_OrderBy,BettorFragmentDoc,BettorsDocument,ConditionStatus$1 as ConditionStatus,DeBridgeExternalCallStatus,DeBridgeOrderStatus,Environment,FreeBetStatus,GameBetsDocument,GameDocument,GameStatus,Game_OrderBy$1 as Game_OrderBy,GamesDocument,BetStatus$1 as GraphBetStatus,LiveBetFragmentDoc,LiveBetsDocument,LiveConditionDocument,LiveConditionFragmentDoc,LiveConditionsDocument,GameStatus$1 as LiveGraphGameStatus,MARGIN_DECIMALS,MIN_LIVE_BET_AMOUNT,MainGameInfoFragmentDoc,NavigationDocument,ODDS_DECIMALS,OrderDirection$1 as OrderDirection,PrematchBetFragmentDoc,PrematchBetsDocument,PrematchConditionDocument,PrematchConditionFragmentDoc,PrematchConditionsBatchDocument,PrematchConditionsDocument,GameStatus$2 as PrematchGraphGameStatus,SelectionResult$1 as SelectionResult,SportsDocument,SportsNavigationDocument,WaveLevelName,activateWave,calcLiveOdds,calcMindOdds,calcPrematchOdds,chainsData,chainsDataByEnv,createDeBridgeBet,deBridgeChainIdByOriginalChainId,deBridgeTxUrl,deBridgeUrl,environments,FreeBet as freeBetAbi,getApiEndpoint,getBetStatus,getDeBridgeOrder,getDeBridgeSupportedChains,getDeBridgeSupportedTokens,getFreeBets,getGameStatus,getLiveBetFee,getLiveGraphqlEndpoint,getPrematchBetDataBytes,getPrematchGraphqlEndpoint,getSocketEndpoint,getWaveLeaderBoard,getWaveLevels,getWavePeriods,getWaveStats,groupByConditionId,groupConditionsByMarket,liveCoreAbi,liveHostAddress,liveSupportedChains,lpAbi,prematchComboCoreAbi,prematchCoreAbi,proxyFrontAbi,setupContracts};
@@ -1,4 +1,11 @@
1
- export declare const getDeBridgeSupportedChains: () => Promise<{
2
- chainId: number;
3
- chainName: string;
4
- }[] | null>;
1
+ type SupportedChainsResponse = {
2
+ chains: {
3
+ chainId: number;
4
+ originalChainId: number;
5
+ chainName: string;
6
+ }[];
7
+ };
8
+ export declare const deBridgeChainIdByOriginalChainId: Record<number, number>;
9
+ export type DeBridgeSupportedChains = SupportedChainsResponse['chains'] | null;
10
+ export declare const getDeBridgeSupportedChains: () => Promise<DeBridgeSupportedChains>;
11
+ export {};
@@ -1,8 +1,13 @@
1
- export declare const getDeBridgeSupportedTokens: (chainId: number) => Promise<Record<string, {
2
- address: string;
3
- symbol: string;
4
- decimals: number;
5
- name: string;
6
- logoURI: string;
7
- tags: Array<string>;
8
- }> | null>;
1
+ type SupportedTokensResponse = {
2
+ tokens: Record<string, {
3
+ address: string;
4
+ symbol: string;
5
+ decimals: number;
6
+ name: string;
7
+ logoURI: string;
8
+ tags: Array<string>;
9
+ }>;
10
+ };
11
+ export type DeBridgeSupportedTokens = SupportedTokensResponse['tokens'] | null;
12
+ export declare const getDeBridgeSupportedTokens: (chainId: number) => Promise<DeBridgeSupportedTokens>;
13
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azuro-org/toolkit",
3
- "version": "4.2.2",
3
+ "version": "4.3.1",
4
4
  "description": "Set of helpers to work with Azuro protocol",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",