Skip to content

Commit

Permalink
Merge pull request #14 from coincord/Modified/Coincord-docs
Browse files Browse the repository at this point in the history
adding licensing docs
  • Loading branch information
Mozartted authored Jul 8, 2024
2 parents 52df96f + 9d6ca40 commit 1fdb5dd
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 1 deletion.
23 changes: 23 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Coincord Software License
## Ownership
This software and all associated documentation (the "Software") are the exclusive property of Coincord. All rights, title, and interest in and to the Software remain with Coincord.

## License Grant
Coincord grants its partners and clients a non-exclusive, non-transferable, limited license to use the Software solely for their internal business purposes.

## Restrictions
Partners and clients are prohibited from:

Distributing, sublicensing, leasing, renting, or otherwise transferring the Software to any third party without the prior written consent of Coincord.
Modifying, decompiling, disassembling, or reverse engineering the Software.
## Termination
Coincord reserves the right to terminate this license if partners or clients fail to comply with any terms of this agreement. Upon termination, partners and clients must cease all use of the Software and destroy all copies in their possession.

## Disclaimer of Warranty
The Software is provided "as is," without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and noninfringement. In no event shall Coincord be liable for any claim, damages, or other liability arising from, out of, or in connection with the Software or the use or other dealings in the Software.

## Limitation of Liability
In no event shall Coincord be liable for any special, incidental, indirect, or consequential damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or any other pecuniary loss) arising out of the use of or inability to use the Software, even if Coincord has been advised of the possibility of such damages.

## Governing Law
This license shall be governed by and construed in accordance with the laws of the jurisdiction in which Coincord is headquartered, without regard to its conflict of law principles.
5 changes: 5 additions & 0 deletions lib/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This software and its associated documentation are the exclusive property of Coincord.
// It is provided to authorized Coincord partners and clients under the terms of the Coincord Software License.
// Unauthorized use, copying, distribution, or modification of this software is strictly prohibited.
// © Coincord 2024. All rights reserved.

require("dotenv").config();
import { GraphQLClient } from "graphql-request";
import graphqlClient from "./requester";
Expand Down
5 changes: 5 additions & 0 deletions lib/queries.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This software and its associated documentation are the exclusive property of Coincord.
// It is provided to authorized Coincord partners and clients under the terms of the Coincord Software License.
// Unauthorized use, copying, distribution, or modification of this software is strictly prohibited.
// © Coincord 2024. All rights reserved.

import { gql } from "graphql-request";

// list queries
Expand Down
5 changes: 5 additions & 0 deletions lib/requester.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This software and its associated documentation are the exclusive property of Coincord.
// It is provided to authorized Coincord partners and clients under the terms of the Coincord Software License.
// Unauthorized use, copying, distribution, or modification of this software is strictly prohibited.
// © Coincord 2024. All rights reserved.

import { request, GraphQLClient } from "graphql-request";

const graphQLClient = new GraphQLClient(
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coincord/coincord-core-sdk-wallet",
"version": "0.1.8-alpha.1",
"version": "0.1.8-alpha.2",
"description": "A module for managing and manipulating operations with bitcoin, ethereum and litecoin wallets.",
"main": "dist/lib/index.js",
"publishConfig": {
Expand Down
5 changes: 5 additions & 0 deletions tests/core-wallet-sdk.test.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// This software and its associated documentation are the exclusive property of Coincord.
// It is provided to authorized Coincord partners and clients under the terms of the Coincord Software License.
// Unauthorized use, copying, distribution, or modification of this software is strictly prohibited.
// © Coincord 2024. All rights reserved.

require("dotenv").config();
// jest.useFakeTimers()
import CoreWalletSdk from "../lib";
Expand Down

0 comments on commit 1fdb5dd

Please sign in to comment.