@aurigami/sdk 1.12.1 → 1.12.3

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,9 @@ import BigNumber from 'bignumber.js';
2
2
  import { BigNumber as BN, providers } from 'ethers';
3
3
  import { TokenAmount } from '../entities/tokenAmount';
4
4
  import { Address, TokenValuation } from '../types';
5
+ export declare function fetchPriceFromDefiLlamaAPI(id: string): Promise<BigNumber>;
5
6
  export declare function fetchPriceFromCoingeckoAPI(id: string): Promise<BigNumber>;
7
+ export declare function fetchPriceFromDefiLlama(id: Address): Promise<BigNumber>;
6
8
  export declare function fetchPriceFromCoingecko(id: Address): Promise<BigNumber>;
7
9
  export declare function fetchLPPositions(LPAddress: Address, provider: providers.Provider): Promise<{
8
10
  token0: Address;
@@ -22,6 +22,10 @@ export declare class PlyGameRead extends BlockchainEntityRead {
22
22
  * Top 100 users by amount of PULP unlocked
23
23
  */
24
24
  leaderboard(): Promise<PlyGameLeaderboardItem[]>;
25
+ getJackpotResult(round: number): Promise<{
26
+ winner: Address;
27
+ amount: TokenAmount;
28
+ }>;
25
29
  }
26
30
  export declare class PlyGameReadWrite extends PlyGameRead {
27
31
  /**