Skip to content

metacube-games/starknet-signatures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

starknet-signatures

This repository gathers the code mentionned in the article A guide on Starknet signatures.

Running the code

  • frontend:
cd frontend
npm install
npm run dev -- --host

# OR

docker run --rm \
  -v "$(pwd)/frontend:/app" \
  -p 3000:3000 \
  -w //app \
  node:latest \
  /bin/bash -c 'npm install && npm run dev -- --host'
  • go:
cd go
go mod tidy
go run .

# OR

docker run --rm \
  -v "$(pwd)/go:/app" \
  -w //app \
  golang:1.23.4 \
  /bin/bash -c 'go mod tidy && go run .'
  • typescript:
cd typescript
npm install
npm start

# OR

docker run --rm \
  -v "$(pwd)/typescript:/app" \
  -w //app \
  node:latest \
  /bin/bash -c 'npm install && npm start'