Skip to content

Commit 0ad2fa1

Browse files
committed
copy idl to ts dir
1 parent 50ca202 commit 0ad2fa1

31 files changed

+12793
-36
lines changed

evm/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
"version": "0.0.1",
44
"author": "Wormhole Contributors",
55
"license": "Apache-2.0",
6-
"main": "./lib/cjs/index.js",
7-
"module": "./lib/esm/index.js",
6+
"main": "./dist/cjs/index.js",
7+
"types":"./dist/cjs/index.d.ts",
8+
"module": "./dist/esm/index.js",
89
"scripts": {
910
"build:esm": "tsc -p tsconfig.esm.json",
1011
"build:cjs": "tsc -p tsconfig.cjs.json",

solana/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
/node_modules
99
target
1010
/ts/tests/artifacts
11-
dist
11+
dist
12+
*.tsbuildinfo

solana/Anchor.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ cluster = "Localnet"
3131
wallet = "ts/tests/keys/pFCBP4bhqdSsrWUVTgqhPsLrfEdChBK17vgFM7TxjxQ.json"
3232

3333
[scripts]
34-
test = "npx ts-mocha -p ./tsconfig.json -t 1000000 --exit ts/tests/[0-9]*.ts"
34+
test = "npx ts-mocha -p ./tsconfig.anchor.json -t 1000000 --exit ts/tests/[0-9]*.ts"
3535

3636
[test]
3737
startup_wait = 20000

solana/Makefile

+5-8
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,13 @@ anchor-test-setup: node_modules ts/tests/artifacts $(CLONED_MAINNET_PROGRAMS)
5656
.PHONY: anchor-build-idl
5757
anchor-build-idl:
5858
anchor build -- --features localnet
59-
git diff --exit-code
59+
# git diff --exit-code
6060

6161
idl: anchor-build-idl
62-
mkdir -p ts/idl/json
63-
mkdir -p ts/idl/ts
64-
cp -r target/idl/* ts/idl/json/
65-
for jsonfile in ts/idl/json/*.json; do \
66-
tsfile=$$(echo $$jsonfile | sed 's/json\/\(.*\)\.json/ts\/\1.ts/'); \
67-
tsx scripts/regenerateIdl.ts $$jsonfile > $$tsfile; \
68-
done
62+
mkdir -p ts/src/idl/json
63+
mkdir -p ts/src/idl/ts
64+
cp -r target/idl/* ts/src/idl/json/
65+
cp -r target/types/* ts/src/idl/ts/
6966

7067
$(BUILD_$(NETWORK)): cargo-test
7168

solana/package.json

+17
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
{
22
"name":"@wormhole-foundation/liquidity-layer-solana",
33
"version": "0.0.1",
4+
"main": "dist/cjs/index.js",
5+
"types": "dist/cjs/index.d.ts",
6+
"module": "dist/esm/index.js",
7+
"files":[
8+
"dist/cjs",
9+
"dist/esm"
10+
],
11+
"exports":{
12+
".":{
13+
"import":"./dist/esm/index.js",
14+
"require":"./dist/cjs/index.js"
15+
},
16+
"./*":{
17+
"import":"./dist/esm/*/index.js",
18+
"require":"./dist/cjs/*/index.js"
19+
}
20+
},
421
"scripts": {
522
"lint:fix": "prettier */*.js \"*/**/*{.js,.ts}\" -w",
623
"lint": "prettier */*.js \"*/**/*{.js,.ts}\" --check",

solana/ts/auction-participant/utils/config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as wormholeSdk from "@certusone/wormhole-sdk";
22
import * as splToken from "@solana/spl-token";
33
import { Commitment, Connection, FetchFn, PublicKey, PublicKeyInitData } from "@solana/web3.js";
44
import { ethers } from "ethers";
5-
import { USDC_MINT_ADDRESS } from "../../tests/helpers";
5+
import { USDC_MINT_ADDRESS } from "../../src/testing";
66
import { defaultLogger } from "./logger";
77

88
export const EVM_FAST_CONSISTENCY_LEVEL = 200;

solana/ts/auction-participant/utils/settleAuction.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { derivePostedVaaKey } from "@certusone/wormhole-sdk/lib/cjs/solana/wormh
44
import * as splToken from "@solana/spl-token";
55
import { PreparedTransaction } from "../../src";
66
import { Auction, AuctionStatus, MatchingEngineProgram } from "../../src/matchingEngine";
7-
import { USDC_MINT_ADDRESS } from "../../tests/helpers";
7+
import { USDC_MINT_ADDRESS } from "../../src/testing";
88
import * as utils from "../utils";
99
import * as winston from "winston";
1010

solana/ts/scripts/executeFastOrder.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Keypair, Connection, Signer } from "@solana/web3.js";
22
import { MatchingEngineProgram } from "../src/matchingEngine";
3-
import { USDC_MINT_ADDRESS } from "../tests/helpers";
3+
import { USDC_MINT_ADDRESS } from "../src/testing";
44
import {
55
ChainId,
66
getEmitterAddressEth,

solana/ts/src/idl/index.ts

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
export * from "./ts/matching_engine";
2+
export * from "./ts/token_router";
3+
export * from "./ts/upgrade_manager";
4+
5+
import * as _MatchingEngineIdl from "./json/matching_engine.json";
6+
import * as _TokenRouterIdl from "./json/token_router.json";
7+
import * as _UpgradeManagerIdl from "./json/upgrade_manager.json";
8+
const idl = {
9+
matchingEngine: _MatchingEngineIdl,
10+
tokenRouter: _TokenRouterIdl,
11+
upgradeManager: _UpgradeManagerIdl,
12+
};
13+
export { idl };

0 commit comments

Comments
 (0)