Skip to content

Commit

Permalink
chore: changed readmes and pckage.json for multiple packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Julink-eth committed Jul 5, 2024
1 parent 5975240 commit efd6ee6
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 232 deletions.
20 changes: 1 addition & 19 deletions packages/linea-ccip-gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,31 +4,13 @@
"main": "dist/index.js",
"author": "Consensys",
"license": "Apache-2.0",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"start": "node dist/server.js",
"build": "tsc --project tsconfig.json --module commonjs --skipLibCheck true --outDir ./dist",
"size": "size-limit",
"analyze": "size-limit --why",
"clean": "rm -fr node_modules dist",
"test": "mocha test/testVerifier.spec.ts --timeout 10000 --exit",
"test": "hardhat compile && mocha test/testVerifier.spec.ts --timeout 10000 --exit",
"compile": "hardhat compile"
},
"module": "dist/linea-ccip-gateway.esm.js",
"size-limit": [
{
"path": "dist/linea-ccip-gateway.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/linea-ccip-gateway.esm.js",
"limit": "10 KB"
}
],
"dependencies": {
"@chainlink/ccip-read-server": "^0.2.1",
"@ethersproject/abi": "^5.4.7",
Expand Down
194 changes: 0 additions & 194 deletions packages/linea-ccip-gateway/src/ccip-server/index.ts

This file was deleted.

2 changes: 1 addition & 1 deletion packages/linea-ccip-gateway/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { EVMGateway } from "./evm-gateway";
import { ethers } from "ethers";
import { L2ProofService } from "./L2ProofService";
import "dotenv/config";
import { Server } from "./ccip-server";
import { Server } from "@chainlink/ccip-read-server";
import { logError } from "./utils";

const l1ProviderUrl = process.env.L1_PROVIDER_URL;
Expand Down
3 changes: 1 addition & 2 deletions packages/linea-ens-resolver/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
{
"name": "linea-ens-resolver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"description": "L1 contracts to resolve Linea ENS domains stored on Linea from L1",
"scripts": {
"test": "hardhat compile && cd ../linea-ccip-gateway && npm run build && cd ../linea-ens-resolver && mocha test/testL1Resolver.spec.ts --timeout 10000 --exit",
"compile": "hardhat compile",
Expand Down
17 changes: 2 additions & 15 deletions packages/poh-signer-api/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Linea ENS POH

API responsible for signing a message aknowledging an address has passed the POH process.
A NestJS API responsible for returning a signature aknowledging an address has passed the POH process.
Uses the [POH api](https://linea-xp-poh-api.linea.build) to check if an address has a POH.

## Installation

Expand Down Expand Up @@ -33,17 +34,3 @@ $ pnpm run test:e2e
# test coverage
$ pnpm run test:cov
```

## Support

Nest is an MIT-licensed open source project. It can grow thanks to the sponsors and support by the amazing backers. If you'd like to join them, please [read more here](https://docs.nestjs.com/support).

## Stay in touch

- Author - [Kamil Myśliwiec](https://kamilmysliwiec.com)
- Website - [https://nestjs.com](https://nestjs.com/)
- Twitter - [@nestframework](https://twitter.com/nestframework)

## License

Nest is [MIT licensed](LICENSE).
2 changes: 1 addition & 1 deletion packages/poh-signer-api/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "poh-signer-api",
"version": "1.0.0",
"description": "",
"description": "API to get a signature for an address that has a POH",
"author": "Consensys",
"private": true,
"license": "Apache-2.0",
Expand Down

0 comments on commit efd6ee6

Please sign in to comment.