From d579fb97171d09ec3d6a73d96dceed87716f590e Mon Sep 17 00:00:00 2001 From: ByteZhang Date: Wed, 28 Aug 2024 18:30:17 +0800 Subject: [PATCH] chore: alephium sign message example --- .../connect-examples/expo-example/src/data/alephium.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/connect-examples/expo-example/src/data/alephium.ts b/packages/connect-examples/expo-example/src/data/alephium.ts index 548b780b4..447cfdeb4 100644 --- a/packages/connect-examples/expo-example/src/data/alephium.ts +++ b/packages/connect-examples/expo-example/src/data/alephium.ts @@ -41,7 +41,7 @@ const api: PlaygroundProps[] = [ title: 'Sign Alephium', value: { path: "m/44'/1234'/0'/0/0", - messageHex: '010203', + messageHex: '68656c6c6f', messageType: 'alephium', }, }, @@ -49,7 +49,7 @@ const api: PlaygroundProps[] = [ title: 'Sign Sha256 (不支持)', value: { path: "m/44'/1234'/0'/0/0", - messageHex: '010203', + messageHex: '68656c6c6f', messageType: 'sha256', }, }, @@ -57,7 +57,7 @@ const api: PlaygroundProps[] = [ title: 'Sign Blake2b (不支持)', value: { path: "m/44'/1234'/0'/0/0", - messageHex: '010203', + messageHex: '68656c6c6f', messageType: 'blake2b', }, }, @@ -65,7 +65,7 @@ const api: PlaygroundProps[] = [ title: 'Sign Identity (不支持)', value: { path: "m/44'/1234'/0'/0/0", - messageHex: '010203', + messageHex: '68656c6c6f', messageType: 'identity', }, },