[sdk] Add new SDK packages to lerna (#630)
This commit is contained in:
parent
bf49774fab
commit
b9430aee81
|
@ -8,7 +8,11 @@
|
|||
"files": [
|
||||
"lib/**/*"
|
||||
],
|
||||
"repository": "https://github.com/pyth-network/pyth-crosschain",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pyth-network/pyth-crosschain.git",
|
||||
"directory": "governance/multisig_wh_message_builder"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest src/ --passWithNoTests",
|
||||
"build": "tsc",
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"@solana/web3.js": "^1.73.0",
|
||||
"@sqds/mesh": "^1.0.6",
|
||||
"@tanstack/react-table": "^8.7.6",
|
||||
"@types/node": "18.11.18",
|
||||
"@types/node": "^18.11.18",
|
||||
"@types/react": "18.0.26",
|
||||
"@types/react-dom": "18.0.10",
|
||||
"copy-to-clipboard": "^3.3.3",
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
"files": [
|
||||
"lib/**/*"
|
||||
],
|
||||
"repository": "https://github.com/pyth-crosschain",
|
||||
"repository": "https://github.com/pyth-network/pyth-crosschain/",
|
||||
"scripts": {
|
||||
"test": "jest src/ --passWithNoTests",
|
||||
"build": "tsc",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -4,10 +4,14 @@
|
|||
"governance/xc_admin/packages/*",
|
||||
"governance/xc_governance_sdk_js",
|
||||
"governance/multisig_wh_message_builder",
|
||||
"price_pusher",
|
||||
"price_service/server",
|
||||
"price_service/sdk/js",
|
||||
"price_service/client/js",
|
||||
"target_chains/aptos/sdk/js",
|
||||
"target_chains/cosmwasm/sdk/js",
|
||||
"target_chains/ethereum/contracts",
|
||||
"target_chains/ethereum/sdk/js",
|
||||
"third_party/pyth/p2w-relay",
|
||||
"wormhole_attester/sdk/js"
|
||||
],
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -11,15 +11,18 @@
|
|||
"bin": {
|
||||
"pyth-evm-price-pusher": "./lib/index.js"
|
||||
},
|
||||
"repository": "https://github.com/pyth-network/pyth-js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pyth-network/pyth-crosschain",
|
||||
"directory": "price_pusher"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest src/ --passWithNoTests",
|
||||
"build": "tsc",
|
||||
"format": "prettier --write \"src/**/*.ts\"",
|
||||
"lint": "eslint src/",
|
||||
"start": "node lib/index.js",
|
||||
"prepare": "npm run build",
|
||||
"prepublishOnly": "npm test && npm run lint",
|
||||
"prepublishOnly": "npm run build && npm test && npm run lint",
|
||||
"preversion": "npm run lint",
|
||||
"version": "npm run format && git add -A src"
|
||||
},
|
||||
|
@ -44,7 +47,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@injectivelabs/sdk-ts": "^1.0.457",
|
||||
"@pythnetwork/pyth-common-js": "^1.4.0",
|
||||
"@pythnetwork/price-service-client": "*",
|
||||
"@pythnetwork/pyth-evm-js": "^1.1.0",
|
||||
"@pythnetwork/pyth-sdk-solidity": "^2.2.0",
|
||||
"@truffle/hdwallet-provider": "^2.1.3",
|
||||
|
|
|
@ -13,7 +13,7 @@ import { EvmPriceListener, EvmPricePusher, PythContractFactory } from "./evm";
|
|||
import { PythPriceListener } from "./pyth-price-listener";
|
||||
import fs from "fs";
|
||||
import { readPriceConfigFile } from "./price-config";
|
||||
import { PriceServiceConnection } from "@pythnetwork/pyth-common-js";
|
||||
import { PriceServiceConnection } from "@pythnetwork/price-service-client";
|
||||
import { InjectivePriceListener, InjectivePricePusher } from "./injective";
|
||||
|
||||
const argv = yargs(hideBin(process.argv))
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
import { HexString, PriceServiceConnection } from "@pythnetwork/pyth-common-js";
|
||||
import {
|
||||
HexString,
|
||||
PriceServiceConnection,
|
||||
} from "@pythnetwork/price-service-client";
|
||||
import { ChainPricePusher, PriceInfo, ChainPriceListener } from "./interface";
|
||||
import { DurationInSeconds } from "./utils";
|
||||
import { PriceConfig } from "./price-config";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { HexString, UnixTimestamp } from "@pythnetwork/pyth-common-js";
|
||||
import { HexString, UnixTimestamp } from "@pythnetwork/price-service-client";
|
||||
import { DurationInSeconds } from "./utils";
|
||||
|
||||
export type PriceInfo = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import { HexString } from "@pythnetwork/pyth-common-js";
|
||||
import { HexString } from "@pythnetwork/price-service-client";
|
||||
import Joi from "joi";
|
||||
import YAML from "yaml";
|
||||
import fs from "fs";
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
import {
|
||||
PriceServiceConnection,
|
||||
HexString,
|
||||
PriceFeed,
|
||||
} from "@pythnetwork/pyth-common-js";
|
||||
PriceServiceConnection,
|
||||
} from "@pythnetwork/price-service-client";
|
||||
import { PriceConfig } from "./price-config";
|
||||
import { PriceInfo, IPriceListener } from "./interface";
|
||||
|
||||
|
|
|
@ -8,7 +8,11 @@
|
|||
"files": [
|
||||
"lib/**/*"
|
||||
],
|
||||
"repository": "https://github.com/pyth-network/pyth-sdk-js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pyth-network/pyth-crosschain.git",
|
||||
"directory": "price_service/sdk/js"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest",
|
||||
"build": "tsc",
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -11,15 +11,18 @@
|
|||
"files": [
|
||||
"lib/**/*"
|
||||
],
|
||||
"repository": "https://github.com/pyth-network/pyth-js/pyth-aptos-js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pyth-network/pyth-crosschain",
|
||||
"directory": "target_chains/aptos/sdk/js"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests",
|
||||
"build": "tsc",
|
||||
"example-relay": "npm run build && node lib/examples/AptosRelay.js",
|
||||
"format": "prettier --write \"src/**/*.ts\"",
|
||||
"lint": "eslint src/",
|
||||
"prepare": "npm run build",
|
||||
"prepublishOnly": "npm test && npm run lint",
|
||||
"prepublishOnly": "npm run build && npm test && npm run lint",
|
||||
"preversion": "npm run lint",
|
||||
"version": "npm run format && git add -A src"
|
||||
},
|
||||
|
@ -29,25 +32,24 @@
|
|||
],
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"@truffle/hdwallet-provider": "^2.0.8",
|
||||
"@truffle/hdwallet-provider": "^2.1.5",
|
||||
"@types/ethereum-protocol": "^1.0.2",
|
||||
"@types/jest": "^27.4.1",
|
||||
"@types/node": "^17.0.27",
|
||||
"@types/web3": "~1.0.20",
|
||||
"@types/jest": "^29.4.0",
|
||||
"@types/node": "^18.11.18",
|
||||
"@types/web3-provider-engine": "^14.0.1",
|
||||
"@types/yargs": "^17.0.10",
|
||||
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
||||
"@typescript-eslint/parser": "^5.21.0",
|
||||
"eslint": "^8.14.0",
|
||||
"jest": "^27.5.1",
|
||||
"jest": "^29.4.1",
|
||||
"prettier": "^2.6.2",
|
||||
"ts-jest": "^27.1.4",
|
||||
"ts-jest": "^29.0.5",
|
||||
"typescript": "^4.6.3",
|
||||
"web3": "^1.5.3",
|
||||
"web3": "^1.8.2",
|
||||
"yargs": "^17.4.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pythnetwork/pyth-common-js": "^1.2.0",
|
||||
"@pythnetwork/price-service-client": "*",
|
||||
"aptos": "^1.3.14",
|
||||
"buffer": "^6.0.3"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
import { PriceServiceConnection, HexString } from "@pythnetwork/pyth-common-js";
|
||||
import {
|
||||
PriceServiceConnection,
|
||||
HexString,
|
||||
} from "@pythnetwork/price-service-client";
|
||||
import { BCS } from "aptos";
|
||||
import { Buffer } from "buffer";
|
||||
|
||||
|
|
|
@ -7,4 +7,4 @@ export {
|
|||
PriceFeed,
|
||||
PriceServiceConnectionConfig,
|
||||
UnixTimestamp,
|
||||
} from "@pythnetwork/pyth-common-js";
|
||||
} from "@pythnetwork/price-service-client";
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -11,7 +11,11 @@
|
|||
"files": [
|
||||
"lib/**/*"
|
||||
],
|
||||
"repository": "https://github.com/pyth-network/pyth-js/pyth-terra-js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pyth-network/pyth-crosschain",
|
||||
"directory": "target_chains/cosmwasm/sdk/js"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests",
|
||||
"build": "tsc",
|
||||
|
@ -19,8 +23,7 @@
|
|||
"example-relay": "npm run build && node lib/examples/TerraRelay.js",
|
||||
"format": "prettier --write \"src/**/*.ts\"",
|
||||
"lint": "eslint src/",
|
||||
"prepare": "npm run build",
|
||||
"prepublishOnly": "npm test && npm run lint",
|
||||
"prepublishOnly": "npm run build && npm test && npm run lint",
|
||||
"preversion": "npm run lint",
|
||||
"version": "npm run format && git add -A src"
|
||||
},
|
||||
|
@ -30,20 +33,20 @@
|
|||
],
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"@types/jest": "^27.4.1",
|
||||
"@types/node": "^17.0.27",
|
||||
"@types/jest": "^29.4.0",
|
||||
"@types/node": "^18.11.18",
|
||||
"@types/yargs": "^17.0.10",
|
||||
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
||||
"@typescript-eslint/parser": "^5.21.0",
|
||||
"eslint": "^8.14.0",
|
||||
"jest": "^27.5.1",
|
||||
"jest": "^29.4.1",
|
||||
"prettier": "^2.6.2",
|
||||
"ts-jest": "^27.1.4",
|
||||
"ts-jest": "^29.0.5",
|
||||
"typescript": "^4.6.3",
|
||||
"yargs": "^17.4.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pythnetwork/pyth-common-js": "^1.2.0",
|
||||
"@pythnetwork/price-service-client": "*",
|
||||
"@terra-money/terra.js": "^3.0.11",
|
||||
"axios": "^0.26.1"
|
||||
}
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
import { PriceServiceConnection, HexString } from "@pythnetwork/pyth-common-js";
|
||||
import {
|
||||
PriceServiceConnection,
|
||||
HexString,
|
||||
} from "@pythnetwork/price-service-client";
|
||||
import { MsgExecuteContract } from "@terra-money/terra.js";
|
||||
|
||||
export class TerraPriceServiceConnection extends PriceServiceConnection {
|
||||
|
|
|
@ -7,7 +7,7 @@ export {
|
|||
PriceFeed,
|
||||
PriceServiceConnectionConfig,
|
||||
UnixTimestamp,
|
||||
} from "@pythnetwork/pyth-common-js";
|
||||
} from "@pythnetwork/price-service-client";
|
||||
|
||||
export const CONTRACT_ADDR: Record<string, string> = {
|
||||
testnet: "terra1wzs3rgzgjdde3kg7k3aaz6qx7sc5dcwxqe9fuc",
|
||||
|
|
|
@ -5,5 +5,6 @@ module.exports = {
|
|||
extends: ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
|
||||
rules: {
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@typescript-eslint/ban-ts-comment": "off",
|
||||
},
|
||||
};
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -11,7 +11,11 @@
|
|||
"files": [
|
||||
"lib/**/*"
|
||||
],
|
||||
"repository": "https://github.com/pyth-network/pyth-crosschain/target_chains/ethereum/sdk/js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/pyth-network/pyth-crosschain",
|
||||
"directory": "target_chains/ethereum/sdk/js"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "jest --passWithNoTests",
|
||||
"build": "tsc",
|
||||
|
@ -19,8 +23,7 @@
|
|||
"example-relay": "npm run build && node lib/examples/EvmRelay.js",
|
||||
"format": "prettier --write \"src/**/*.ts\"",
|
||||
"lint": "eslint src/",
|
||||
"prepare": "npm run build",
|
||||
"prepublishOnly": "npm test && npm run lint",
|
||||
"prepublishOnly": "npm run build && npm test && npm run lint",
|
||||
"preversion": "npm run lint",
|
||||
"version": "npm run format && git add -A src"
|
||||
},
|
||||
|
@ -31,25 +34,24 @@
|
|||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"@pythnetwork/pyth-sdk-solidity": "^2.2.0",
|
||||
"@truffle/hdwallet-provider": "^2.0.8",
|
||||
"@truffle/hdwallet-provider": "^2.1.5",
|
||||
"@types/ethereum-protocol": "^1.0.2",
|
||||
"@types/jest": "^27.4.1",
|
||||
"@types/node": "^17.0.27",
|
||||
"@types/web3": "~1.0.20",
|
||||
"@types/jest": "^29.4.0",
|
||||
"@types/node": "^18.11.18",
|
||||
"@types/web3-provider-engine": "^14.0.1",
|
||||
"@types/yargs": "^17.0.10",
|
||||
"@typescript-eslint/eslint-plugin": "^5.21.0",
|
||||
"@typescript-eslint/parser": "^5.21.0",
|
||||
"eslint": "^8.14.0",
|
||||
"jest": "^27.5.1",
|
||||
"jest": "^29.4.1",
|
||||
"prettier": "^2.6.2",
|
||||
"ts-jest": "^27.1.4",
|
||||
"ts-jest": "^29.0.5",
|
||||
"typescript": "^4.6.3",
|
||||
"web3": "^1.5.3",
|
||||
"web3": "^1.8.2",
|
||||
"yargs": "^17.4.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@pythnetwork/pyth-common-js": "^1.4.0",
|
||||
"@pythnetwork/price-service-client": "*",
|
||||
"buffer": "^6.0.3"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
import { PriceServiceConnection, HexString } from "@pythnetwork/pyth-common-js";
|
||||
import {
|
||||
PriceServiceConnection,
|
||||
HexString,
|
||||
} from "@pythnetwork/price-service-client";
|
||||
import { Buffer } from "buffer";
|
||||
|
||||
export class EvmPriceServiceConnection extends PriceServiceConnection {
|
||||
|
|
|
@ -55,6 +55,7 @@ async function run() {
|
|||
providerOrUrl: network,
|
||||
});
|
||||
|
||||
// @ts-ignore
|
||||
const web3 = new Web3(provider);
|
||||
const priceIds = argv.priceIds as string[];
|
||||
|
||||
|
|
|
@ -7,7 +7,7 @@ export {
|
|||
PriceFeed,
|
||||
PriceServiceConnectionConfig,
|
||||
UnixTimestamp,
|
||||
} from "@pythnetwork/pyth-common-js";
|
||||
} from "@pythnetwork/price-service-client";
|
||||
|
||||
export const CONTRACT_ADDR: Record<string, string> = {
|
||||
bnb_testnet: "0xd7308b14BF4008e7C7196eC35610B1427C5702EA",
|
||||
|
|
Loading…
Reference in New Issue