fix: install dependencies before nebula build

This commit is contained in:
Prad Nukala
2024-10-07 23:14:06 -04:00
parent 2772e568d5
commit b19d5d06a0
10 changed files with 25 additions and 14 deletions
+17
View File
@@ -0,0 +1,17 @@
package state
templ InsertAccount(accountName string) {
<script>
const accountId = await motr.insertAccount({
name: accountName,
address: "0x1234567890123456789012345678901234567890",
publicKey: "sample_public_key",
chainCode: "SONR",
index: 0,
controller: "sample_controller",
createdAt: new Date(),
});
console.log("Inserted account with ID:", accountId);
</script>
}