Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix parameter schema of set_address function #134

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.1

- Fix parameter schema of function `set_address`.

## 1.5.0

- Migrate dApp from using deprecated JSON-RPC client to new gRPC client.
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.0",
"version": "1.5.1",
"license": "Apache-2.0",
"engines": {
"node": ">=16.x"
Expand Down
2 changes: 1 addition & 1 deletion wallet-connect-test-bench/front-end/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const SET_U16_PARAMETER_SCHEMA = 'Aw==';

export const SET_CONTRACT_ADDRESS_PARAMETER_SCHEMA = 'DA==';

export const SET_ADDRESS_PARAMETER_SCHEMA = 'FQIAAAAHAAAAQWNjb3VudAEBAAAACwgAAABDb250cmFjdAEBAAAADA';
export const SET_ADDRESS_PARAMETER_SCHEMA = 'FQIAAAAHAAAAQWNjb3VudAEBAAAACwgAAABDb250cmFjdAEBAAAADA==';

export const SET_ACCOUNT_ADDRESS_PARAMETER_SCHEMA = 'Cw==';

Expand Down