Skip to content

Commit

Permalink
chore: update info export
Browse files Browse the repository at this point in the history
  • Loading branch information
ruijialin-avalabs committed Oct 18, 2024
1 parent ad65b27 commit f958498
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 89 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ export { Utxo } from './serializable/avax/utxo';
export * from './signer';
export * as utils from './utils';
export * from './vms';
export { Info } from './info/info';
export * as info from './info';
export * from './crypto';
86 changes: 0 additions & 86 deletions src/info/info.ts

This file was deleted.

4 changes: 2 additions & 2 deletions src/vms/context/context.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { InfoApi } from '../../info';
import { getHRP } from '../../constants/networkIDs';
import { Info } from '../../info/info';
import { AVMApi } from '../avm/api';
import { PVMApi } from '../pvm';
import type { Context } from './model';
Expand All @@ -16,7 +16,7 @@ export const getContextFromURI = async (
const { assetID: avaxAssetID } = await xChainApi.getAssetDescription(
assetDescription,
);
const info = new Info(baseURL);
const info = new InfoApi(baseURL);
const {
txFee: baseTxFee,
createAssetTxFee,
Expand Down

0 comments on commit f958498

Please sign in to comment.