@ape.swap/bonds-sdk 4.0.0-test.6 → 4.0.0-test.7

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.
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { SvgProps } from '../types';
3
+ declare const KATANA: React.FC<SvgProps>;
4
+ export default KATANA;
@@ -26,3 +26,4 @@ export { default as MONAD } from './MONAD';
26
26
  export { default as SONIC } from './SONIC';
27
27
  export { default as BERA } from './BERA';
28
28
  export { default as SOLANA } from './SOL';
29
+ export { default as KATANA } from './KATANA';
@@ -57,6 +57,7 @@ export declare enum icons {
57
57
  SONIC = "sonic",
58
58
  BERA = "bera",
59
59
  SOL = "sol",
60
+ KATANA = "katana",
60
61
  DISCORD = "discord",
61
62
  REDDIT = "reddit",
62
63
  MEDIUM = "medium",
@@ -1,2 +1,3 @@
1
1
  import { ChainId } from '@ape.swap/apeswap-lists';
2
2
  export declare const PUBLIC_RPC_URLS: Partial<Record<ChainId, string[]>>;
3
+ export declare const getRPC: (chain: ChainId) => string;