diff --git a/front-end-tools/CHANGELOG.md b/front-end-tools/CHANGELOG.md index 8a29dae5..880df5a0 100644 --- a/front-end-tools/CHANGELOG.md +++ b/front-end-tools/CHANGELOG.md @@ -1,5 +1,10 @@ ## Unreleased changes +- Fix error message when specifying input parameter without uploading schema. +- Fix error when contract calls return BigInts. +- Fix contract method names in error messages. +- Give warning when deploying a module that does not have embedded build information. + ## 3.0.1 - Upgrade dependencies @concordium/web-sdk and @concordium/react-components diff --git a/front-end-tools/package.json b/front-end-tools/package.json index 83b65f62..7368a510 100644 --- a/front-end-tools/package.json +++ b/front-end-tools/package.json @@ -9,6 +9,7 @@ "dependencies": { "@concordium/react-components": "^0.4.0", "@concordium/web-sdk": "^7.1.0", + "json-bigint": "^1.0.0", "moment": "^2.29.4", "react": "^18.1.0", "react-bootstrap": "^2.7.4", @@ -18,6 +19,7 @@ "react-switch": "^7.0.0" }, "devDependencies": { + "@types/json-bigint": "^1", "@types/node": "^18.7.23", "@types/react": "^18.0.9", "@types/react-dom": "^18.0.5", diff --git a/front-end-tools/src/Main.tsx b/front-end-tools/src/Main.tsx index 3d7f88fa..e95954a6 100644 --- a/front-end-tools/src/Main.tsx +++ b/front-end-tools/src/Main.tsx @@ -78,13 +78,13 @@ export default function Main(props: ConnectionProps) {

- {activeConnectorError && Connector Error: {activeConnectorError}.} + {activeConnectorError && Connector Error: {activeConnectorError}.} {!activeConnectorError && activeConnectorType && !activeConnector && (

Loading connector...

)} - {connectError && Connect Error: {connectError}.} + {connectError && Connect Error: {connectError}.} {!isConnected && (