@ape.swap/bonds-sdk 3.0.84-test.2 → 3.0.84

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.
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  declare const AddFavToken: ({ tokenSymbol, hotBond }: {
3
- tokenSymbol: string;
3
+ tokenSymbol?: string;
4
4
  hotBond?: boolean;
5
5
  }) => React.JSX.Element;
6
6
  export default AddFavToken;
@@ -1,8 +1,8 @@
1
1
  import React from 'react';
2
2
  export declare const NETWORK_COLORS: Partial<Record<number, string>>;
3
3
  declare const TokenInfoAndName: ({ tokenSymbol, chain, tag, vestEnds, isHotBond, }: {
4
- tokenSymbol: string;
5
- chain: number;
4
+ tokenSymbol?: string;
5
+ chain?: number;
6
6
  tag?: string;
7
7
  vestEnds?: string;
8
8
  isHotBond?: boolean;
@@ -4,6 +4,6 @@ declare const TokenRow: ({ token, chainId, handleTokenSelect, tokenBalance, }: {
4
4
  token: "NATIVE" | Token;
5
5
  chainId: ChainId;
6
6
  handleTokenSelect: (currency: string) => void;
7
- tokenBalance: string;
7
+ tokenBalance?: string;
8
8
  }) => React.JSX.Element;
9
9
  export default TokenRow;
@@ -25,4 +25,3 @@ export { default as CROSSFI } from './CROSSFI';
25
25
  export { default as MONAD } from './MONAD';
26
26
  export { default as SONIC } from './SONIC';
27
27
  export { default as BERA } from './BERA';
28
- export { default as KATANA } from './KATANA';
@@ -56,7 +56,6 @@ export declare enum icons {
56
56
  MONAD = "monad",
57
57
  SONIC = "sonic",
58
58
  BERA = "bera",
59
- KATANA = "katana",
60
59
  DISCORD = "discord",
61
60
  REDDIT = "reddit",
62
61
  MEDIUM = "medium",
@@ -3,6 +3,23 @@ export declare const useMonitorTxHash: (txHash?: string | null, chainId?: ChainI
3
3
  isLoading: boolean;
4
4
  isSuccess: boolean;
5
5
  data: {
6
- [x: string]: any;
7
- };
6
+ blobGasPrice?: bigint | undefined;
7
+ blobGasUsed?: bigint | undefined;
8
+ blockHash: import("viem").Hash;
9
+ blockNumber: bigint;
10
+ contractAddress: import("abitype").Address | null | undefined;
11
+ cumulativeGasUsed: bigint;
12
+ effectiveGasPrice: bigint;
13
+ from: import("abitype").Address;
14
+ gasUsed: bigint;
15
+ logs: import("viem").Log<bigint, number, false>[];
16
+ logsBloom: import("viem").Hex;
17
+ root?: `0x${string}` | undefined;
18
+ status: "success" | "reverted";
19
+ to: import("abitype").Address | null;
20
+ transactionHash: import("viem").Hash;
21
+ transactionIndex: number;
22
+ type: import("viem").TransactionType;
23
+ chainId: number;
24
+ } | undefined;
8
25
  };