Skip to content

Commit

Permalink
Update wallet-connect-test-bench.
Browse files Browse the repository at this point in the history
  • Loading branch information
abizjak committed Apr 15, 2024
1 parent 19a7869 commit 2d4d91e
Show file tree
Hide file tree
Showing 6 changed files with 149 additions and 195 deletions.
4 changes: 4 additions & 0 deletions wallet-connect-test-bench/front-end/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## Unreleased changes

## 1.5.3

Update smart contract to be more efficient.

## 1.5.2

- Update dependencies.
Expand Down
2 changes: 1 addition & 1 deletion wallet-connect-test-bench/front-end/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "test-bench-for-wallets",
"packageManager": "[email protected]",
"version": "1.5.2",
"version": "1.5.3",
"license": "Apache-2.0",
"type": "module",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions wallet-connect-test-bench/front-end/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export const BASE_64_TEST_BENCH_SMART_CONTRACT_MODULE =

export const CONTRACT_NAME = "smart_contract_test_bench";

export const CONTRACT_INDEX = 4726n;
export const CONTRACT_INDEX = 8649n;

export const CONTRACT_SUB_INDEX = 0n;

Expand All @@ -95,7 +95,7 @@ const WALLET_CONNECT_OPTS: SignClientTypes.Options = {
metadata: {
name: "Test_Bench",
description: "Example dApp for testing.",
url: "#",
url: "https://wallet-test-bench.testnet.concordium.com/",
icons: ["https://walletconnect.com/walletconnect-logo.png"],
},
};
Expand Down
97 changes: 19 additions & 78 deletions wallet-connect-test-bench/smart-contract/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions wallet-connect-test-bench/smart-contract/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "smart_contract_test_bench"
version = "1.0.0"
version = "1.1.0"
authors = ["Concordium <[email protected]>"]
edition = "2021"
license = "MPL-2.0"

[features]
default = ["std", "wee_alloc"]
default = ["std", "bump_alloc"]
std = ["concordium-std/std"]
wee_alloc = ["concordium-std/wee_alloc"]
bump_alloc = ["concordium-std/bump_alloc"]

[dependencies]
concordium-std = {version = "6.2.0", default-features = false}
concordium-std = {version = "10", default-features = false}

[lib]
crate-type=["cdylib", "rlib"]
Expand Down
Loading

0 comments on commit 2d4d91e

Please sign in to comment.