Skip to content

Commit e590778

Browse files
author
Bingle Kruger
committed
feat(smart-contract): Initial Smart Contract Implementation with DRTs
1 parent fa38432 commit e590778

16 files changed

+5566
-1
lines changed

.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,6 @@ bin/
2929

3030
start.sh
3131

32-
/site/*
32+
/site/*
33+
34+
test-ledger

drt-manager/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.anchor
2+
.DS_Store
3+
target
4+
**/*.rs.bk
5+
node_modules
6+
test-ledger
7+
.yarn

drt-manager/.prettierignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.anchor
2+
.DS_Store
3+
target
4+
node_modules
5+
dist
6+
build
7+
test-ledger

drt-manager/Anchor.toml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[toolchain]
2+
3+
[features]
4+
resolution = true
5+
skip-lint = false
6+
7+
[programs.localnet]
8+
drt_manager = "CiHJcJofM1k3iEKh7sHtzWY71HJhzP2rqw6Z6i9h9dwP"
9+
10+
[registry]
11+
url = "https://api.apr.dev"
12+
13+
[provider]
14+
cluster = "Devnet"
15+
wallet = "./test-wallet.json"
16+
17+
[scripts]
18+
test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"

0 commit comments

Comments
 (0)