diff --git a/packages/evmUtils/README.md b/packages/evmUtils/README.md new file mode 100644 index 0000000000..f9c690cdcb --- /dev/null +++ b/packages/evmUtils/README.md @@ -0,0 +1,3 @@ +# @moralisweb3/evm-utils + +🚨 This package is depreciated. Please use the `@moralisweb3/common-evm-utils` package instead. diff --git a/packages/evmUtils/package.json b/packages/evmUtils/package.json new file mode 100644 index 0000000000..9f753e902f --- /dev/null +++ b/packages/evmUtils/package.json @@ -0,0 +1,23 @@ +{ + "name": "@moralisweb3/evm-utils", + "author": "Moralis", + "version": "2.7.4", + "license": "MIT", + "private": false, + "main": "./lib/index.js", + "types": "./lib/index.d.ts", + "sideEffects": false, + "files": [ + "lib/*" + ], + "scripts": { + "clean": "rm -rf lib && rm -rf tsconfig.tsbuildinfo && rm -rf tsconfig.build.tsbuildinfo && rm -rf ./node_modules/.cache/nx", + "build": "tsc -p tsconfig.build.json" + }, + "devDependencies": { + "typescript": "^4.5.5" + }, + "dependencies": { + "@moralisweb3/common-evm-utils": "^2.7.4" + } +} diff --git a/packages/evmUtils/src/index.ts b/packages/evmUtils/src/index.ts new file mode 100644 index 0000000000..788e407d48 --- /dev/null +++ b/packages/evmUtils/src/index.ts @@ -0,0 +1,6 @@ +export * from '@moralisweb3/common-evm-utils'; + +// eslint-disable-next-line no-console +console.warn( + 'moralis: @moralisweb3/evm-utils package is depreciated. Please use @moralisweb3/common-evm-utils instead', +); diff --git a/packages/evmUtils/tsconfig.build.json b/packages/evmUtils/tsconfig.build.json new file mode 100644 index 0000000000..b4c56f4a53 --- /dev/null +++ b/packages/evmUtils/tsconfig.build.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./lib/", + "declarationDir": "./lib/", + "rootDir": "./src" + }, + "exclude": ["test/**/*", "**/__mocks__/*", "**/test/*", "**/*.test.ts", "integration/**/*"] +} diff --git a/packages/evmUtils/tsconfig.json b/packages/evmUtils/tsconfig.json new file mode 100644 index 0000000000..4ad1872b82 --- /dev/null +++ b/packages/evmUtils/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.package.json", + "compilerOptions": { + "outDir": "./lib", + "declarationDir": "./lib/", + "rootDir": "./src" + }, + "include": ["src/**/*", "types/**/*"] +} diff --git a/packages/solUtils/README.md b/packages/solUtils/README.md new file mode 100644 index 0000000000..6eaf36c0d8 --- /dev/null +++ b/packages/solUtils/README.md @@ -0,0 +1,3 @@ +# @moralisweb3/sol-utils + +🚨 This package is depreciated. Please use the `@moralisweb3/common-sol-utils` package instead. diff --git a/packages/solUtils/package.json b/packages/solUtils/package.json new file mode 100644 index 0000000000..7d3ecf0af5 --- /dev/null +++ b/packages/solUtils/package.json @@ -0,0 +1,23 @@ +{ + "name": "@moralisweb3/sol-utils", + "author": "Moralis", + "version": "2.7.4", + "license": "MIT", + "private": false, + "main": "./lib/index.js", + "types": "./lib/index.d.ts", + "sideEffects": false, + "files": [ + "lib/*" + ], + "scripts": { + "clean": "rm -rf lib && rm -rf tsconfig.tsbuildinfo && rm -rf tsconfig.build.tsbuildinfo && rm -rf ./node_modules/.cache/nx", + "build": "tsc -p tsconfig.build.json" + }, + "devDependencies": { + "typescript": "^4.5.5" + }, + "dependencies": { + "@moralisweb3/common-sol-utils": "^2.7.4" + } +} diff --git a/packages/solUtils/src/index.ts b/packages/solUtils/src/index.ts new file mode 100644 index 0000000000..00768539ae --- /dev/null +++ b/packages/solUtils/src/index.ts @@ -0,0 +1,6 @@ +export * from '@moralisweb3/common-sol-utils'; + +// eslint-disable-next-line no-console +console.warn( + 'moralis: @moralisweb3/sol-utils package is depreciated. Please use @moralisweb3/common-sol-utils instead', +); diff --git a/packages/solUtils/tsconfig.build.json b/packages/solUtils/tsconfig.build.json new file mode 100644 index 0000000000..b4c56f4a53 --- /dev/null +++ b/packages/solUtils/tsconfig.build.json @@ -0,0 +1,9 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./lib/", + "declarationDir": "./lib/", + "rootDir": "./src" + }, + "exclude": ["test/**/*", "**/__mocks__/*", "**/test/*", "**/*.test.ts", "integration/**/*"] +} diff --git a/packages/solUtils/tsconfig.json b/packages/solUtils/tsconfig.json new file mode 100644 index 0000000000..4ad1872b82 --- /dev/null +++ b/packages/solUtils/tsconfig.json @@ -0,0 +1,9 @@ +{ + "extends": "../../tsconfig.package.json", + "compilerOptions": { + "outDir": "./lib", + "declarationDir": "./lib/", + "rootDir": "./src" + }, + "include": ["src/**/*", "types/**/*"] +}