Skip to content

Commit

Permalink
Merge branch 'main' into fix-aip80-strictness
Browse files Browse the repository at this point in the history
  • Loading branch information
gregnazario authored Nov 25, 2024
2 parents c6f0497 + e0ddd43 commit 05f82e1
Show file tree
Hide file tree
Showing 6 changed files with 2,389 additions and 0 deletions.
18 changes: 18 additions & 0 deletions projects/gas-station/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Gas station
Example Gas station node server accepting user signed transactions,
signing with fee payer and submitting to Aptos Blockchain.

### Build project
```bash
pnpm run build
```

### Start Server
```bash
pnpm start-server
```

### Start Client
```bash
pnpm start-client
```
27 changes: 27 additions & 0 deletions projects/gas-station/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "gas-station",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsup src --out-dir dist --format esm --dts",
"start-server": "node dist/server.mjs",
"start-client": "node dist/client.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@aptos-labs/ts-sdk": "^1.33.0",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"express": "^4.21.1"
},
"devDependencies": {
"@types/express": "^4.17",
"@types/node": "^22.9.1",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
}
}
Loading

0 comments on commit 05f82e1

Please sign in to comment.