@the-situation/artifacts 0.5.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/contracts-release-manifest.json +32 -0
- package/dist/index.d.ts +48 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +35 -0
- package/dist/index.js.map +1 -0
- package/dist/the_situation_normal_amm.abi.json +1567 -0
- package/dist/the_situation_normal_factory.abi.json +595 -0
- package/dist/the_situation_normal_math_library.abi.json +1386 -0
- package/dist/the_situation_oracle.abi.json +786 -0
- package/package.json +33 -0
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@the-situation/artifacts",
|
|
3
|
+
"version": "0.5.0-alpha.0",
|
|
4
|
+
"description": "Bundled contract ABIs for The Situation prediction market contracts",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": ["dist"],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "bun run artifacts:check && tsc -b && bun run artifacts:copy",
|
|
17
|
+
"typecheck": "tsc -b",
|
|
18
|
+
"test": "echo 'No tests'",
|
|
19
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
20
|
+
"pull-artifacts": "bun run scripts/pull-artifacts.ts",
|
|
21
|
+
"artifacts:check": "bun run scripts/check-artifacts.ts",
|
|
22
|
+
"artifacts:copy": "bun run scripts/copy-artifacts.ts"
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"starknet": "^9.2.1"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"starknet": "^9.2.1",
|
|
29
|
+
"typescript": "^5.4.0",
|
|
30
|
+
"@types/bun": "^1.1.0"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT"
|
|
33
|
+
}
|