chore(license): update licensing (#1106)

* chore(license): update licensing

* chore(license): update licensing on Java files
This commit is contained in:
Alain Nicolas
2025-06-09 11:53:04 +02:00
committed by GitHub
parent 4e5625bdc0
commit a3ad42a072
156 changed files with 668 additions and 1298 deletions

View File

@@ -1,13 +0,0 @@
Copyright 2023 Consensys Software Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@@ -9,11 +9,11 @@ The Linea SDK package a TypeScript library for seamless bridging operations betw
- Claim bridged assets on L1 and L2
- Get message proof to claim on L1
- Track message status across chains
- 🔍 **Message Tracking**
- Query message status
- Monitor bridge events
-**Gas Management**
- Automatic gas estimation
- Custom fee strategies
@@ -230,4 +230,4 @@ const tx = await l2Contract.claim(message);
## License
This package is licensed under the Apache License 2.0 - see the [LICENSE](LICENSE) file for details.
This package is licensed under the [Apache 2.0](../LICENSE-APACHE) and the [MIT](../LICENSE-MIT) licenses.

View File

@@ -2,7 +2,7 @@
"name": "@consensys/linea-sdk",
"version": "1.0.0",
"author": "Consensys Software Inc.",
"license": "Apache-2.0",
"license": "(MIT OR Apache-2.0)",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
@@ -14,6 +14,8 @@
"lint:fix": "pnpm run lint:ts:fix && pnpm run prettier:fix",
"clean": "rimraf dist src/typechain node_modules coverage tsconfig.build.tsbuildinfo",
"build:pre": "pnpm run typechain",
"prepack": "cp ../LICENSE-APACHE . && cp ../LICENSE-MIT . && pnpm run build",
"postpublish": "rm -rf LICENSE-APACHE LICENSE-MIT",
"build": "pnpm run build:pre && tsc -p tsconfig.build.json",
"typechain": "typechain --target ethers-v6 --out-dir ./src/contracts/typechain './src/contracts/abis/*.abi'",
"test": "npx jest --bail --detectOpenHandles --forceExit"
@@ -32,6 +34,8 @@
"typechain": "catalog:"
},
"files": [
"dist"
"dist",
"LICENSE-APACHE",
"LICENSE-MIT"
]
}