This is an automated email from the ASF dual-hosted git repository.
bisman pushed a commit to branch development
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
The following commit(s) were added to refs/heads/development by this push:
new 7a931714 Fixed license issue, solc package issue and updated Readme
7a931714 is described below
commit 7a931714494977c11038a468e03c733e4a42047f
Author: Bismanpal-Singh <[email protected]>
AuthorDate: Sat Feb 21 00:54:47 2026 +0000
Fixed license issue, solc package issue and updated Readme
---
.gitignore | 3 ++-
ecosystem/smart-contract/rescontract/index.js | 3 ++-
ecosystem/smart-contract/smart-contract-graphql/README.md | 2 ++
package-lock.json | 6 ------
4 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/.gitignore b/.gitignore
index 8c22d6d0..d5e636c9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -23,4 +23,5 @@ resdb/
100*_db/
gmon.out
.history/
-service/tools/data/cert
\ No newline at end of file
+service/tools/data/cert
+ecosystem/smart-contract/smart-contract-graphql/compiled_contracts/
\ No newline at end of file
diff --git a/ecosystem/smart-contract/rescontract/index.js
b/ecosystem/smart-contract/rescontract/index.js
index 8ea75dc8..31af9989 100755
--- a/ecosystem/smart-contract/rescontract/index.js
+++ b/ecosystem/smart-contract/rescontract/index.js
@@ -213,7 +213,8 @@ program
process.exit(1);
}
- const command = 'solc';
+ const command = process.env.SOLC_PATH || 'solc';
+
const args = [
'--evm-version',
'homestead',
diff --git a/ecosystem/smart-contract/smart-contract-graphql/README.md
b/ecosystem/smart-contract/smart-contract-graphql/README.md
index d7ec76af..ceca7d7d 100644
--- a/ecosystem/smart-contract/smart-contract-graphql/README.md
+++ b/ecosystem/smart-contract/smart-contract-graphql/README.md
@@ -95,6 +95,8 @@ npm start
The server will start running on port `8400`. You can access the GraphQL API
at `http://localhost:8400/graphql`.
+**Public endpoint (no local server required):** The Smart Contract GraphQL API
is also available at **https://contract.resilientdb.com/graphql**. Use this URL
to call the API from your app or scripts without running the server locally.
+
## GraphQL API
The GraphQL API supports the following mutations to interact with smart
contracts.
diff --git a/package-lock.json b/package-lock.json
deleted file mode 100644
index d05bda5b..00000000
--- a/package-lock.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "name": "incubator-resilientdb",
- "lockfileVersion": 2,
- "requires": true,
- "packages": {}
-}