From 6dd76471038c384b3c412fa429a490f9ee3fb115 Mon Sep 17 00:00:00 2001 From: James Jia Date: Tue, 24 Oct 2023 08:26:12 -0700 Subject: [PATCH] (refactor): Update LICENSE indicators to GNU AGPLv3 (#690) * Update LICENSE indicators to GNU AGPLv3 * Remove BSL portion of license --- LICENSE | 42 ------------------- README.md | 2 +- indexer/LICENSE | 42 ------------------- indexer/package.json | 2 +- indexer/packages/base/package.json | 2 +- indexer/packages/compliance/package.json | 2 +- indexer/packages/dev/package.json | 2 +- indexer/packages/example-package/package.json | 2 +- indexer/packages/kafka/package.json | 2 +- indexer/packages/postgres/package.json | 2 +- indexer/packages/redis/package.json | 2 +- indexer/packages/v4-proto-parser/package.json | 2 +- indexer/packages/v4-protos/package.json | 2 +- indexer/services/auxo/package.json | 2 +- indexer/services/bazooka/package.json | 2 +- indexer/services/comlink/package.json | 2 +- indexer/services/ender/package.json | 2 +- indexer/services/roundtable/package.json | 2 +- indexer/services/scripts/package.json | 2 +- indexer/services/socks/package.json | 2 +- indexer/services/vulcan/package.json | 2 +- proto/LICENSE | 42 ------------------- protocol/LICENSE | 42 ------------------- v4-proto-js/LICENSE | 42 ------------------- v4-proto-js/README.md | 4 +- v4-proto-js/package-lock.json | 2 +- v4-proto-js/package.json | 2 +- v4-proto-py/LICENSE | 42 ------------------- v4-proto-py/README.md | 2 +- 29 files changed, 24 insertions(+), 276 deletions(-) diff --git a/LICENSE b/LICENSE index 07d5a961e1..64b1a1a154 100644 --- a/LICENSE +++ b/LICENSE @@ -1,45 +1,3 @@ -Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the below licenses; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. - -Use of this software before the Change Date specified in the LICENSE file is governed by the Business Source License included in the LICENSE file and at https://spdx.org/licenses/BUSL-1.1.html. - -On and after the Change Date specified in the LICENSE file, use of this software will be governed by the Change License (GNU Affero GPL v3) as specified in the LICENSE file. - - -Business Source License 1.1 -Business Source License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Copyright (C) 2023 dYdX Trading Inc. - -Parameters -Licensor: dYdX Trading Inc. -Licensed Work: dydxprotocol/cosmos-sdk, dydxprotocol/cometbft, dydxprotocol/v4-chain, dydxprotocol/v4-clients, dydxprotocol/v4-web, dydxprotocol/v4-abacus, dydxprotocol/v4-localization, dydxprotocol/v4-documentation, and any dYdX or dYdX Trading Inc. github repository reflecting a copy of this license, or link to this license. -Additional Use Grant: None -Change Date: On the later to occur of (i) the release of the Licensed Work labeled “dYdX Version 1.0 Affero GPL”, and which includes a document uploaded to the relevant github repository stating “The software in this repository is Version 1.0, subject to Affero GPL license”, and (ii) September 30, 2023 (approximate projected release of “Version 1.0” of this software). -Change License: GNU Affero GPL License v3 - -License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Terms -The Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work. The Licensor may make an Additional Use Grant, above, permitting limited production use. -Effective on the Change Date, or the fourth anniversary of the first publicly available distribution of a specific version of the Licensed Work under this License, whichever comes first, the Licensor hereby grants you rights under the terms of the Change License, and the rights granted in the paragraph above terminate. -If your use of the Licensed Work does not comply with the requirements currently in effect as described in this License, you must purchase a commercial license from the Licensor, its affiliated entities, or authorized resellers, or you must refrain from using the Licensed Work. -All copies of the original and modified Licensed Work, and derivative works of the Licensed Work, are subject to this License. This License applies separately for each version of the Licensed Work and the Change Date may vary for each version of the Licensed Work released by Licensor. -You must conspicuously display this License on each original or modified copy of the Licensed Work. If you receive the Licensed Work in original or modified form from a third party, the terms and conditions set forth in this License apply to your use of that work. -Any use of the Licensed Work in violation of this License will automatically terminate your rights under this License for the current and all other versions of the Licensed Work. -This License does not grant you any right in any trademark or logo of Licensor or its affiliates (provided that you may use a trademark or logo of Licensor as expressly required by this License).TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to use this License’s text to license your works, and to refer to it using the trademark “Business Source License”, as long as you comply with the Covenants of Licensor below. -Covenants of Licensor -In consideration of the right to use this License’s text and the “Business Source License” name and trademark, Licensor covenants to MariaDB, and to all other recipients of the licensed work to be provided by Licensor: -To specify as the Change License the GPL Version 2.0 or any later version, or a license that is compatible with GPL Version 2.0 or a later version, where “compatible” means that software provided under the Change License can be included in a program with software provided under GPL Version 2.0 or a later version. Licensor may specify additional Change Licenses without limitation. -To either: (a) specify an additional grant of rights to use that does not impose any additional restriction on the right granted in this License, as the Additional Use Grant; or (b) insert the text “None” to specify a Change Date. Not to modify this License in any other way. -Notice -The Business Source License (this document, or the “License”) is not an Open Source license. However, the Licensed Work will eventually be made available under an Open Source License, as stated in this License. - - - - - - -OPEN SOURCE LICENSE BELOW - TO BE APPLIED AFTER THE CHANGE DATE. - - Copyright (C) 2023 dYdX Trading Inc. Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the GNU Affero General Public License as set forth below; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. diff --git a/README.md b/README.md index 318e5c1903..5480aa0a42 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@
- License + License
diff --git a/indexer/LICENSE b/indexer/LICENSE index 07d5a961e1..64b1a1a154 100644 --- a/indexer/LICENSE +++ b/indexer/LICENSE @@ -1,45 +1,3 @@ -Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the below licenses; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. - -Use of this software before the Change Date specified in the LICENSE file is governed by the Business Source License included in the LICENSE file and at https://spdx.org/licenses/BUSL-1.1.html. - -On and after the Change Date specified in the LICENSE file, use of this software will be governed by the Change License (GNU Affero GPL v3) as specified in the LICENSE file. - - -Business Source License 1.1 -Business Source License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Copyright (C) 2023 dYdX Trading Inc. - -Parameters -Licensor: dYdX Trading Inc. -Licensed Work: dydxprotocol/cosmos-sdk, dydxprotocol/cometbft, dydxprotocol/v4-chain, dydxprotocol/v4-clients, dydxprotocol/v4-web, dydxprotocol/v4-abacus, dydxprotocol/v4-localization, dydxprotocol/v4-documentation, and any dYdX or dYdX Trading Inc. github repository reflecting a copy of this license, or link to this license. -Additional Use Grant: None -Change Date: On the later to occur of (i) the release of the Licensed Work labeled “dYdX Version 1.0 Affero GPL”, and which includes a document uploaded to the relevant github repository stating “The software in this repository is Version 1.0, subject to Affero GPL license”, and (ii) September 30, 2023 (approximate projected release of “Version 1.0” of this software). -Change License: GNU Affero GPL License v3 - -License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Terms -The Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work. The Licensor may make an Additional Use Grant, above, permitting limited production use. -Effective on the Change Date, or the fourth anniversary of the first publicly available distribution of a specific version of the Licensed Work under this License, whichever comes first, the Licensor hereby grants you rights under the terms of the Change License, and the rights granted in the paragraph above terminate. -If your use of the Licensed Work does not comply with the requirements currently in effect as described in this License, you must purchase a commercial license from the Licensor, its affiliated entities, or authorized resellers, or you must refrain from using the Licensed Work. -All copies of the original and modified Licensed Work, and derivative works of the Licensed Work, are subject to this License. This License applies separately for each version of the Licensed Work and the Change Date may vary for each version of the Licensed Work released by Licensor. -You must conspicuously display this License on each original or modified copy of the Licensed Work. If you receive the Licensed Work in original or modified form from a third party, the terms and conditions set forth in this License apply to your use of that work. -Any use of the Licensed Work in violation of this License will automatically terminate your rights under this License for the current and all other versions of the Licensed Work. -This License does not grant you any right in any trademark or logo of Licensor or its affiliates (provided that you may use a trademark or logo of Licensor as expressly required by this License).TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to use this License’s text to license your works, and to refer to it using the trademark “Business Source License”, as long as you comply with the Covenants of Licensor below. -Covenants of Licensor -In consideration of the right to use this License’s text and the “Business Source License” name and trademark, Licensor covenants to MariaDB, and to all other recipients of the licensed work to be provided by Licensor: -To specify as the Change License the GPL Version 2.0 or any later version, or a license that is compatible with GPL Version 2.0 or a later version, where “compatible” means that software provided under the Change License can be included in a program with software provided under GPL Version 2.0 or a later version. Licensor may specify additional Change Licenses without limitation. -To either: (a) specify an additional grant of rights to use that does not impose any additional restriction on the right granted in this License, as the Additional Use Grant; or (b) insert the text “None” to specify a Change Date. Not to modify this License in any other way. -Notice -The Business Source License (this document, or the “License”) is not an Open Source license. However, the Licensed Work will eventually be made available under an Open Source License, as stated in this License. - - - - - - -OPEN SOURCE LICENSE BELOW - TO BE APPLIED AFTER THE CHANGE DATE. - - Copyright (C) 2023 dYdX Trading Inc. Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the GNU Affero General Public License as set forth below; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. diff --git a/indexer/package.json b/indexer/package.json index 7ab3534c4c..ce29744048 100644 --- a/indexer/package.json +++ b/indexer/package.json @@ -16,5 +16,5 @@ "test:all": "pnpm recursive run --workspace-concurrency=1 test" }, "author": "", - "license": "BSL-1.1" + "license": "AGPL-3.0" } diff --git a/indexer/packages/base/package.json b/indexer/packages/base/package.json index afd8106ed4..316f38de61 100644 --- a/indexer/packages/base/package.json +++ b/indexer/packages/base/package.json @@ -25,7 +25,7 @@ "url": "git+https://github.com/dydxprotocol/indexer.git" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "bugs": { "url": "https://github.com/dydxprotocol/indexer/issues" }, diff --git a/indexer/packages/compliance/package.json b/indexer/packages/compliance/package.json index 849665e691..b3b6080e3c 100644 --- a/indexer/packages/compliance/package.json +++ b/indexer/packages/compliance/package.json @@ -22,7 +22,7 @@ "url": "git+https://github.com/dydxprotocol/indexer.git" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "bugs": { "url": "https://github.com/dydxprotocol/indexer/issues" }, diff --git a/indexer/packages/dev/package.json b/indexer/packages/dev/package.json index 0e54f55adb..f66b901964 100644 --- a/indexer/packages/dev/package.json +++ b/indexer/packages/dev/package.json @@ -35,7 +35,7 @@ "url": "git+https://github.com/dydxprotocol/indexer.git" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "bugs": { "url": "https://github.com/dydxprotocol/indexer/issues" }, diff --git a/indexer/packages/example-package/package.json b/indexer/packages/example-package/package.json index 30790d2f72..f79b3d116f 100644 --- a/indexer/packages/example-package/package.json +++ b/indexer/packages/example-package/package.json @@ -20,7 +20,7 @@ "url": "git+https://github.com/dydxprotocol/indexer.git" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "bugs": { "url": "https://github.com/dydxprotocol/indexer/issues" }, diff --git a/indexer/packages/kafka/package.json b/indexer/packages/kafka/package.json index e3c6d352a8..284f08173a 100644 --- a/indexer/packages/kafka/package.json +++ b/indexer/packages/kafka/package.json @@ -25,7 +25,7 @@ "url": "git+https://github.com/dydxprotocol/indexer.git" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "bugs": { "url": "https://github.com/dydxprotocol/indexer/issues" }, diff --git a/indexer/packages/postgres/package.json b/indexer/packages/postgres/package.json index 922c0780ff..6a39e8a7d9 100644 --- a/indexer/packages/postgres/package.json +++ b/indexer/packages/postgres/package.json @@ -32,7 +32,7 @@ "url": "git+https://github.com/dydxprotocol/indexer.git" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "bugs": { "url": "https://github.com/dydxprotocol/indexer/issues" }, diff --git a/indexer/packages/redis/package.json b/indexer/packages/redis/package.json index 02280e53d4..57d32606e8 100644 --- a/indexer/packages/redis/package.json +++ b/indexer/packages/redis/package.json @@ -28,7 +28,7 @@ "url": "git+https://github.com/dydxprotocol/indexer.git" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "bugs": { "url": "https://github.com/dydxprotocol/indexer/issues" }, diff --git a/indexer/packages/v4-proto-parser/package.json b/indexer/packages/v4-proto-parser/package.json index 3ead013fb3..4df0329969 100644 --- a/indexer/packages/v4-proto-parser/package.json +++ b/indexer/packages/v4-proto-parser/package.json @@ -24,7 +24,7 @@ "url": "git+https://github.com/dydxprotocol/indexer.git" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "bugs": { "url": "https://github.com/dydxprotocol/indexer/issues" }, diff --git a/indexer/packages/v4-protos/package.json b/indexer/packages/v4-protos/package.json index 6209f9e642..218e59d134 100644 --- a/indexer/packages/v4-protos/package.json +++ b/indexer/packages/v4-protos/package.json @@ -25,7 +25,7 @@ "url": "git+https://github.com/dydxprotocol/indexer.git" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "bugs": { "url": "https://github.com/dydxprotocol/indexer/issues" }, diff --git a/indexer/services/auxo/package.json b/indexer/services/auxo/package.json index 5ac1611b6f..eb2e4b0892 100644 --- a/indexer/services/auxo/package.json +++ b/indexer/services/auxo/package.json @@ -14,7 +14,7 @@ "test": "NODE_ENV=test jest --runInBand --forceExit" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "dependencies": { "@aws-sdk/client-ecr": "^3.354.0", "@aws-sdk/client-ecs": "^3.353.0", diff --git a/indexer/services/bazooka/package.json b/indexer/services/bazooka/package.json index 0292f6b7fd..6b2e7e4539 100644 --- a/indexer/services/bazooka/package.json +++ b/indexer/services/bazooka/package.json @@ -14,7 +14,7 @@ "test": "NODE_ENV=test jest --runInBand --forceExit" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "dependencies": { "@dydxprotocol-indexer/base": "workspace:^0.0.1", "@dydxprotocol-indexer/kafka": "workspace:^0.0.1", diff --git a/indexer/services/comlink/package.json b/indexer/services/comlink/package.json index a25a483e5d..82352d664a 100644 --- a/indexer/services/comlink/package.json +++ b/indexer/services/comlink/package.json @@ -17,7 +17,7 @@ "gen-markdown": "widdershins public/swagger.json -o public/api-documentation.md --omitHeader --language_tabs 'python:Python' 'javascript:Javascript'" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "dependencies": { "@bugsnag/core": "^7.18.0", "@bugsnag/js": "^7.18.0", diff --git a/indexer/services/ender/package.json b/indexer/services/ender/package.json index 25e7965a39..646c58a329 100644 --- a/indexer/services/ender/package.json +++ b/indexer/services/ender/package.json @@ -14,7 +14,7 @@ "test": "NODE_ENV=test jest --runInBand --forceExit" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "dependencies": { "@dydxprotocol-indexer/base": "workspace:^0.0.1", "@dydxprotocol-indexer/kafka": "workspace:^0.0.1", diff --git a/indexer/services/roundtable/package.json b/indexer/services/roundtable/package.json index 5c86f8460a..7b856e1135 100644 --- a/indexer/services/roundtable/package.json +++ b/indexer/services/roundtable/package.json @@ -14,7 +14,7 @@ "test": "NODE_ENV=test jest --runInBand --forceExit" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "dependencies": { "@dydxprotocol-indexer/base": "workspace:^0.0.1", "@dydxprotocol-indexer/compliance": "workspace:^0.0.1", diff --git a/indexer/services/scripts/package.json b/indexer/services/scripts/package.json index 5e13c2e0ae..e19bdc7031 100644 --- a/indexer/services/scripts/package.json +++ b/indexer/services/scripts/package.json @@ -15,7 +15,7 @@ "test": "NODE_ENV=test jest --runInBand --forceExit" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "dependencies": { "@dydxprotocol-indexer/base": "workspace:^0.0.1", "@dydxprotocol-indexer/postgres": "workspace:^0.0.1", diff --git a/indexer/services/socks/package.json b/indexer/services/socks/package.json index e9cbfc79eb..1e86abea75 100644 --- a/indexer/services/socks/package.json +++ b/indexer/services/socks/package.json @@ -14,7 +14,7 @@ "test": "NODE_ENV=test jest --runInBand --forceExit" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "dependencies": { "@dydxprotocol-indexer/base": "workspace:^0.0.1", "@dydxprotocol-indexer/compliance": "workspace:^0.0.1", diff --git a/indexer/services/vulcan/package.json b/indexer/services/vulcan/package.json index 3bac2ddf01..4e8121b8a5 100644 --- a/indexer/services/vulcan/package.json +++ b/indexer/services/vulcan/package.json @@ -14,7 +14,7 @@ "test": "NODE_ENV=test jest --runInBand --forceExit" }, "author": "", - "license": "BSL-1.1", + "license": "AGPL-3.0", "dependencies": { "@dydxprotocol-indexer/base": "workspace:^0.0.1", "@dydxprotocol-indexer/kafka": "workspace:^0.0.1", diff --git a/proto/LICENSE b/proto/LICENSE index 07d5a961e1..64b1a1a154 100644 --- a/proto/LICENSE +++ b/proto/LICENSE @@ -1,45 +1,3 @@ -Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the below licenses; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. - -Use of this software before the Change Date specified in the LICENSE file is governed by the Business Source License included in the LICENSE file and at https://spdx.org/licenses/BUSL-1.1.html. - -On and after the Change Date specified in the LICENSE file, use of this software will be governed by the Change License (GNU Affero GPL v3) as specified in the LICENSE file. - - -Business Source License 1.1 -Business Source License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Copyright (C) 2023 dYdX Trading Inc. - -Parameters -Licensor: dYdX Trading Inc. -Licensed Work: dydxprotocol/cosmos-sdk, dydxprotocol/cometbft, dydxprotocol/v4-chain, dydxprotocol/v4-clients, dydxprotocol/v4-web, dydxprotocol/v4-abacus, dydxprotocol/v4-localization, dydxprotocol/v4-documentation, and any dYdX or dYdX Trading Inc. github repository reflecting a copy of this license, or link to this license. -Additional Use Grant: None -Change Date: On the later to occur of (i) the release of the Licensed Work labeled “dYdX Version 1.0 Affero GPL”, and which includes a document uploaded to the relevant github repository stating “The software in this repository is Version 1.0, subject to Affero GPL license”, and (ii) September 30, 2023 (approximate projected release of “Version 1.0” of this software). -Change License: GNU Affero GPL License v3 - -License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Terms -The Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work. The Licensor may make an Additional Use Grant, above, permitting limited production use. -Effective on the Change Date, or the fourth anniversary of the first publicly available distribution of a specific version of the Licensed Work under this License, whichever comes first, the Licensor hereby grants you rights under the terms of the Change License, and the rights granted in the paragraph above terminate. -If your use of the Licensed Work does not comply with the requirements currently in effect as described in this License, you must purchase a commercial license from the Licensor, its affiliated entities, or authorized resellers, or you must refrain from using the Licensed Work. -All copies of the original and modified Licensed Work, and derivative works of the Licensed Work, are subject to this License. This License applies separately for each version of the Licensed Work and the Change Date may vary for each version of the Licensed Work released by Licensor. -You must conspicuously display this License on each original or modified copy of the Licensed Work. If you receive the Licensed Work in original or modified form from a third party, the terms and conditions set forth in this License apply to your use of that work. -Any use of the Licensed Work in violation of this License will automatically terminate your rights under this License for the current and all other versions of the Licensed Work. -This License does not grant you any right in any trademark or logo of Licensor or its affiliates (provided that you may use a trademark or logo of Licensor as expressly required by this License).TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to use this License’s text to license your works, and to refer to it using the trademark “Business Source License”, as long as you comply with the Covenants of Licensor below. -Covenants of Licensor -In consideration of the right to use this License’s text and the “Business Source License” name and trademark, Licensor covenants to MariaDB, and to all other recipients of the licensed work to be provided by Licensor: -To specify as the Change License the GPL Version 2.0 or any later version, or a license that is compatible with GPL Version 2.0 or a later version, where “compatible” means that software provided under the Change License can be included in a program with software provided under GPL Version 2.0 or a later version. Licensor may specify additional Change Licenses without limitation. -To either: (a) specify an additional grant of rights to use that does not impose any additional restriction on the right granted in this License, as the Additional Use Grant; or (b) insert the text “None” to specify a Change Date. Not to modify this License in any other way. -Notice -The Business Source License (this document, or the “License”) is not an Open Source license. However, the Licensed Work will eventually be made available under an Open Source License, as stated in this License. - - - - - - -OPEN SOURCE LICENSE BELOW - TO BE APPLIED AFTER THE CHANGE DATE. - - Copyright (C) 2023 dYdX Trading Inc. Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the GNU Affero General Public License as set forth below; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. diff --git a/protocol/LICENSE b/protocol/LICENSE index 07d5a961e1..64b1a1a154 100644 --- a/protocol/LICENSE +++ b/protocol/LICENSE @@ -1,45 +1,3 @@ -Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the below licenses; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. - -Use of this software before the Change Date specified in the LICENSE file is governed by the Business Source License included in the LICENSE file and at https://spdx.org/licenses/BUSL-1.1.html. - -On and after the Change Date specified in the LICENSE file, use of this software will be governed by the Change License (GNU Affero GPL v3) as specified in the LICENSE file. - - -Business Source License 1.1 -Business Source License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Copyright (C) 2023 dYdX Trading Inc. - -Parameters -Licensor: dYdX Trading Inc. -Licensed Work: dydxprotocol/cosmos-sdk, dydxprotocol/cometbft, dydxprotocol/v4-chain, dydxprotocol/v4-clients, dydxprotocol/v4-web, dydxprotocol/v4-abacus, dydxprotocol/v4-localization, dydxprotocol/v4-documentation, and any dYdX or dYdX Trading Inc. github repository reflecting a copy of this license, or link to this license. -Additional Use Grant: None -Change Date: On the later to occur of (i) the release of the Licensed Work labeled “dYdX Version 1.0 Affero GPL”, and which includes a document uploaded to the relevant github repository stating “The software in this repository is Version 1.0, subject to Affero GPL license”, and (ii) September 30, 2023 (approximate projected release of “Version 1.0” of this software). -Change License: GNU Affero GPL License v3 - -License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Terms -The Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work. The Licensor may make an Additional Use Grant, above, permitting limited production use. -Effective on the Change Date, or the fourth anniversary of the first publicly available distribution of a specific version of the Licensed Work under this License, whichever comes first, the Licensor hereby grants you rights under the terms of the Change License, and the rights granted in the paragraph above terminate. -If your use of the Licensed Work does not comply with the requirements currently in effect as described in this License, you must purchase a commercial license from the Licensor, its affiliated entities, or authorized resellers, or you must refrain from using the Licensed Work. -All copies of the original and modified Licensed Work, and derivative works of the Licensed Work, are subject to this License. This License applies separately for each version of the Licensed Work and the Change Date may vary for each version of the Licensed Work released by Licensor. -You must conspicuously display this License on each original or modified copy of the Licensed Work. If you receive the Licensed Work in original or modified form from a third party, the terms and conditions set forth in this License apply to your use of that work. -Any use of the Licensed Work in violation of this License will automatically terminate your rights under this License for the current and all other versions of the Licensed Work. -This License does not grant you any right in any trademark or logo of Licensor or its affiliates (provided that you may use a trademark or logo of Licensor as expressly required by this License).TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to use this License’s text to license your works, and to refer to it using the trademark “Business Source License”, as long as you comply with the Covenants of Licensor below. -Covenants of Licensor -In consideration of the right to use this License’s text and the “Business Source License” name and trademark, Licensor covenants to MariaDB, and to all other recipients of the licensed work to be provided by Licensor: -To specify as the Change License the GPL Version 2.0 or any later version, or a license that is compatible with GPL Version 2.0 or a later version, where “compatible” means that software provided under the Change License can be included in a program with software provided under GPL Version 2.0 or a later version. Licensor may specify additional Change Licenses without limitation. -To either: (a) specify an additional grant of rights to use that does not impose any additional restriction on the right granted in this License, as the Additional Use Grant; or (b) insert the text “None” to specify a Change Date. Not to modify this License in any other way. -Notice -The Business Source License (this document, or the “License”) is not an Open Source license. However, the Licensed Work will eventually be made available under an Open Source License, as stated in this License. - - - - - - -OPEN SOURCE LICENSE BELOW - TO BE APPLIED AFTER THE CHANGE DATE. - - Copyright (C) 2023 dYdX Trading Inc. Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the GNU Affero General Public License as set forth below; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. diff --git a/v4-proto-js/LICENSE b/v4-proto-js/LICENSE index 07d5a961e1..64b1a1a154 100644 --- a/v4-proto-js/LICENSE +++ b/v4-proto-js/LICENSE @@ -1,45 +1,3 @@ -Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the below licenses; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. - -Use of this software before the Change Date specified in the LICENSE file is governed by the Business Source License included in the LICENSE file and at https://spdx.org/licenses/BUSL-1.1.html. - -On and after the Change Date specified in the LICENSE file, use of this software will be governed by the Change License (GNU Affero GPL v3) as specified in the LICENSE file. - - -Business Source License 1.1 -Business Source License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Copyright (C) 2023 dYdX Trading Inc. - -Parameters -Licensor: dYdX Trading Inc. -Licensed Work: dydxprotocol/cosmos-sdk, dydxprotocol/cometbft, dydxprotocol/v4-chain, dydxprotocol/v4-clients, dydxprotocol/v4-web, dydxprotocol/v4-abacus, dydxprotocol/v4-localization, dydxprotocol/v4-documentation, and any dYdX or dYdX Trading Inc. github repository reflecting a copy of this license, or link to this license. -Additional Use Grant: None -Change Date: On the later to occur of (i) the release of the Licensed Work labeled “dYdX Version 1.0 Affero GPL”, and which includes a document uploaded to the relevant github repository stating “The software in this repository is Version 1.0, subject to Affero GPL license”, and (ii) September 30, 2023 (approximate projected release of “Version 1.0” of this software). -Change License: GNU Affero GPL License v3 - -License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Terms -The Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work. The Licensor may make an Additional Use Grant, above, permitting limited production use. -Effective on the Change Date, or the fourth anniversary of the first publicly available distribution of a specific version of the Licensed Work under this License, whichever comes first, the Licensor hereby grants you rights under the terms of the Change License, and the rights granted in the paragraph above terminate. -If your use of the Licensed Work does not comply with the requirements currently in effect as described in this License, you must purchase a commercial license from the Licensor, its affiliated entities, or authorized resellers, or you must refrain from using the Licensed Work. -All copies of the original and modified Licensed Work, and derivative works of the Licensed Work, are subject to this License. This License applies separately for each version of the Licensed Work and the Change Date may vary for each version of the Licensed Work released by Licensor. -You must conspicuously display this License on each original or modified copy of the Licensed Work. If you receive the Licensed Work in original or modified form from a third party, the terms and conditions set forth in this License apply to your use of that work. -Any use of the Licensed Work in violation of this License will automatically terminate your rights under this License for the current and all other versions of the Licensed Work. -This License does not grant you any right in any trademark or logo of Licensor or its affiliates (provided that you may use a trademark or logo of Licensor as expressly required by this License).TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to use this License’s text to license your works, and to refer to it using the trademark “Business Source License”, as long as you comply with the Covenants of Licensor below. -Covenants of Licensor -In consideration of the right to use this License’s text and the “Business Source License” name and trademark, Licensor covenants to MariaDB, and to all other recipients of the licensed work to be provided by Licensor: -To specify as the Change License the GPL Version 2.0 or any later version, or a license that is compatible with GPL Version 2.0 or a later version, where “compatible” means that software provided under the Change License can be included in a program with software provided under GPL Version 2.0 or a later version. Licensor may specify additional Change Licenses without limitation. -To either: (a) specify an additional grant of rights to use that does not impose any additional restriction on the right granted in this License, as the Additional Use Grant; or (b) insert the text “None” to specify a Change Date. Not to modify this License in any other way. -Notice -The Business Source License (this document, or the “License”) is not an Open Source license. However, the Licensed Work will eventually be made available under an Open Source License, as stated in this License. - - - - - - -OPEN SOURCE LICENSE BELOW - TO BE APPLIED AFTER THE CHANGE DATE. - - Copyright (C) 2023 dYdX Trading Inc. Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the GNU Affero General Public License as set forth below; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. diff --git a/v4-proto-js/README.md b/v4-proto-js/README.md index 13c5e0c121..faacf36f9c 100644 --- a/v4-proto-js/README.md +++ b/v4-proto-js/README.md @@ -4,10 +4,10 @@
- PyPI + npm - License + License
diff --git a/v4-proto-js/package-lock.json b/v4-proto-js/package-lock.json index e69371292f..69d6e8034c 100644 --- a/v4-proto-js/package-lock.json +++ b/v4-proto-js/package-lock.json @@ -7,7 +7,7 @@ "": { "name": "@dydxprotocol/v4-proto", "version": "0.0.0", - "license": "BSL-1.1", + "license": "AGPL-3.0", "dependencies": { "protobufjs": "^6.11.2" }, diff --git a/v4-proto-js/package.json b/v4-proto-js/package.json index 90cdad18ce..7816006aac 100644 --- a/v4-proto-js/package.json +++ b/v4-proto-js/package.json @@ -5,7 +5,7 @@ "description": "Protos for dYdX v4 protocol", "author": "dYdX Trading Inc.", "homepage": "https://github.com/dydxprotocol/v4-chain", - "license": "BSL-1.1", + "license": "AGPL-3.0", "main": "main/index.js", "module": "module/index.js", "typings": "types/index.d.ts", diff --git a/v4-proto-py/LICENSE b/v4-proto-py/LICENSE index 07d5a961e1..64b1a1a154 100644 --- a/v4-proto-py/LICENSE +++ b/v4-proto-py/LICENSE @@ -1,45 +1,3 @@ -Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the below licenses; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. - -Use of this software before the Change Date specified in the LICENSE file is governed by the Business Source License included in the LICENSE file and at https://spdx.org/licenses/BUSL-1.1.html. - -On and after the Change Date specified in the LICENSE file, use of this software will be governed by the Change License (GNU Affero GPL v3) as specified in the LICENSE file. - - -Business Source License 1.1 -Business Source License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Copyright (C) 2023 dYdX Trading Inc. - -Parameters -Licensor: dYdX Trading Inc. -Licensed Work: dydxprotocol/cosmos-sdk, dydxprotocol/cometbft, dydxprotocol/v4-chain, dydxprotocol/v4-clients, dydxprotocol/v4-web, dydxprotocol/v4-abacus, dydxprotocol/v4-localization, dydxprotocol/v4-documentation, and any dYdX or dYdX Trading Inc. github repository reflecting a copy of this license, or link to this license. -Additional Use Grant: None -Change Date: On the later to occur of (i) the release of the Licensed Work labeled “dYdX Version 1.0 Affero GPL”, and which includes a document uploaded to the relevant github repository stating “The software in this repository is Version 1.0, subject to Affero GPL license”, and (ii) September 30, 2023 (approximate projected release of “Version 1.0” of this software). -Change License: GNU Affero GPL License v3 - -License text copyright © 2023 MariaDB plc, All Rights Reserved. “Business Source License” is a trademark of MariaDB plc. -Terms -The Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work. The Licensor may make an Additional Use Grant, above, permitting limited production use. -Effective on the Change Date, or the fourth anniversary of the first publicly available distribution of a specific version of the Licensed Work under this License, whichever comes first, the Licensor hereby grants you rights under the terms of the Change License, and the rights granted in the paragraph above terminate. -If your use of the Licensed Work does not comply with the requirements currently in effect as described in this License, you must purchase a commercial license from the Licensor, its affiliated entities, or authorized resellers, or you must refrain from using the Licensed Work. -All copies of the original and modified Licensed Work, and derivative works of the Licensed Work, are subject to this License. This License applies separately for each version of the Licensed Work and the Change Date may vary for each version of the Licensed Work released by Licensor. -You must conspicuously display this License on each original or modified copy of the Licensed Work. If you receive the Licensed Work in original or modified form from a third party, the terms and conditions set forth in this License apply to your use of that work. -Any use of the Licensed Work in violation of this License will automatically terminate your rights under this License for the current and all other versions of the Licensed Work. -This License does not grant you any right in any trademark or logo of Licensor or its affiliates (provided that you may use a trademark or logo of Licensor as expressly required by this License).TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE. MariaDB hereby grants you permission to use this License’s text to license your works, and to refer to it using the trademark “Business Source License”, as long as you comply with the Covenants of Licensor below. -Covenants of Licensor -In consideration of the right to use this License’s text and the “Business Source License” name and trademark, Licensor covenants to MariaDB, and to all other recipients of the licensed work to be provided by Licensor: -To specify as the Change License the GPL Version 2.0 or any later version, or a license that is compatible with GPL Version 2.0 or a later version, where “compatible” means that software provided under the Change License can be included in a program with software provided under GPL Version 2.0 or a later version. Licensor may specify additional Change Licenses without limitation. -To either: (a) specify an additional grant of rights to use that does not impose any additional restriction on the right granted in this License, as the Additional Use Grant; or (b) insert the text “None” to specify a Change Date. Not to modify this License in any other way. -Notice -The Business Source License (this document, or the “License”) is not an Open Source license. However, the Licensed Work will eventually be made available under an Open Source License, as stated in this License. - - - - - - -OPEN SOURCE LICENSE BELOW - TO BE APPLIED AFTER THE CHANGE DATE. - - Copyright (C) 2023 dYdX Trading Inc. Subject to your compliance with applicable law, you are granted the right to use the Licensed Work (defined below) under the terms of the GNU Affero General Public License as set forth below; provided, however, that if you violate any such applicable law in your use of the Licensed Work, all of your rights and licenses to use (including any rights to reproduce, distribute, install or modify) the Licensed Work will automatically and immediately terminate. diff --git a/v4-proto-py/README.md b/v4-proto-py/README.md index 1d2c0edecd..73155ff74e 100644 --- a/v4-proto-py/README.md +++ b/v4-proto-py/README.md @@ -7,7 +7,7 @@ PyPI - License + License