Skip to content

Commit

Permalink
Merge pull request #69 from tamago-labs/aptos-v1
Browse files Browse the repository at this point in the history
Legato Aptos
  • Loading branch information
pisuthd committed Jun 6, 2024
2 parents c9d4c00 + 87f72ef commit 2ea6faf
Show file tree
Hide file tree
Showing 20 changed files with 3,532 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"bootstrap": "npm install; lerna bootstrap;",
"start": "run-p --print-label package:*",
"build": "lerna run --parallel build",
"test": "lerna run test --concurrency 1 --stream --scope sui"
"test": "lerna run test --concurrency 1 --stream --scope sui",
"test-aptos": "lerna run test --concurrency 1 --stream --scope aptos"
},
"devDependencies": {
"lerna": "^6.6.2",
Expand Down
3 changes: 3 additions & 0 deletions packages/aptos/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.aptos/
build/
old/
17 changes: 17 additions & 0 deletions packages/aptos/Move.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "legato"
version = "0.1.0"
authors = []

[addresses]
legato_addr = "f586bbdd187df4e3bd7cd5b8af8a7018d8b8b5f3ec24a95cd5ac79d94ebca981"
aptos_framework = "0x1"

[dev-addresses]

[dependencies.AptosFramework]
git = "https://github.com/aptos-labs/aptos-core.git"
rev = "mainnet"
subdir = "aptos-move/framework/aptos-framework"

[dev-dependencies]
14 changes: 14 additions & 0 deletions packages/aptos/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "aptos",
"version": "0.1.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "aptos move test"
},
"author": "",
"license": "MIT"
}
Loading

0 comments on commit 2ea6faf

Please sign in to comment.