From 7d0cc4de5ff3f4b13290c4344aed96ee0a7f34a2 Mon Sep 17 00:00:00 2001 From: Fingerling42 Date: Tue, 7 Jan 2025 16:29:50 +0200 Subject: [PATCH] Added params for humanoid robot --- src/views/humanoid/config.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/views/humanoid/config.js b/src/views/humanoid/config.js index 4b16818..fb73020 100644 --- a/src/views/humanoid/config.js +++ b/src/views/humanoid/config.js @@ -1,16 +1,16 @@ export const price = 1_000_000_000; -export const robot = "4GzMLepDF5nKTWDM6XpB3CrBcFmwgazcVFAD3ZBNAjKT6hQJ"; +export const robot = "4GfZP7fbGZBx5GxR4mreLGTm872vHYhDMmaV6d1SEHGtv7AP"; export const listOfCommands = [ { - name: "A", - value: "0x0000000000000000000000000000000000000000000000000000000000000001" + name: "Squat", + value: "0x3000000000000000000000000000000000000000000000000000000000000000" }, { - name: "B", - value: "0x0000000000000000000000000000000000000000000000000000000000000002" + name: "Stand Up", + value: "0x3100000000000000000000000000000000000000000000000000000000000000" }, { - name: "C", - value: "0x0000000000000000000000000000000000000000000000000000000000000003" + name: "Rotate", + value: "0x3200000000000000000000000000000000000000000000000000000000000000" } ];