Skip to content

Commit

Permalink
fix: import the json content itself, not the module
Browse files Browse the repository at this point in the history
  • Loading branch information
Kiryous committed Apr 27, 2022
1 parent 5e2a4e6 commit e9e56e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import type * as anchor from '@project-serum/anchor';
import { Keypair, PublicKey } from '@solana/web3.js';

import { EmbeddedWallet } from './Wallet';
import * as idl_ from './dialect.json';
import * as programs_ from './programs.json';
import idl_ from './dialect.json';
import programs_ from './programs.json';
import { ecdhDecrypt, ecdhEncrypt } from './ecdh-encryption';

export const idl = idl_;
Expand Down

0 comments on commit e9e56e6

Please sign in to comment.