@buenos_andres/contracts 0.0.1-test.3 → 0.1.1
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/README.md +1 -0
- package/access/AccessControl.compact +2 -1
- package/access/Ownable.compact +1 -0
- package/access/witnesses/AccessControlWitnesses.js +2 -0
- package/access/witnesses/OwnableWitnesses.js +2 -0
- package/package.json +15 -6
- package/security/Initializable.compact +1 -0
- package/security/Pausable.compact +1 -0
- package/security/witnesses/InitializableWitnesses.js +2 -0
- package/security/witnesses/PausableWitnesses.js +2 -0
- package/token/FungibleToken.compact +1 -0
- package/token/MultiToken.compact +1 -0
- package/token/NonFungibleToken.compact +1 -0
- package/token/witnesses/FungibleTokenWitnesses.js +2 -0
- package/token/witnesses/MultiTokenWitnesses.js +2 -0
- package/token/witnesses/NonFungibleTokenWitnesses.js +2 -0
- package/utils/Utils.compact +1 -0
- package/utils/witnesses/UtilsWitnesses.js +2 -0
- package/access/witnesses/AccessControlWitnesses.ts +0 -3
- package/access/witnesses/OwnableWitnesses.ts +0 -3
- package/security/witnesses/InitializableWitnesses.ts +0 -3
- package/security/witnesses/PausableWitnesses.ts +0 -3
- package/token/witnesses/FungibleTokenWitnesses.ts +0 -3
- package/token/witnesses/MultiTokenWitnesses.ts +0 -3
- package/token/witnesses/NonFungibleTokenWitnesses.ts +0 -3
- package/utils/witnesses/UtilsWitnesses.ts +0 -3
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# Test package
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
// SPDX-License-Identifier: MIT
|
|
2
|
+
// MyFun Contracts v0.1.1 (access/AccessControl.compact)
|
|
2
3
|
|
|
3
4
|
pragma language_version >= 0.16.0;
|
|
4
5
|
|
|
@@ -14,7 +15,7 @@ pragma language_version >= 0.16.0;
|
|
|
14
15
|
*
|
|
15
16
|
* ```typescript
|
|
16
17
|
* import CompactStandardLibrary;
|
|
17
|
-
* import "./node_modules/@
|
|
18
|
+
* import "./node_modules/@openzeppelin-compact/accessControl/src/AccessControl" prefix AccessControl_;
|
|
18
19
|
*
|
|
19
20
|
* export sealed ledger MY_ROLE: Bytes<32>;
|
|
20
21
|
*
|
package/access/Ownable.compact
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buenos_andres/contracts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "test contract stuff",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"foo",
|
|
@@ -9,8 +9,17 @@
|
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"author": "daddy",
|
|
11
11
|
"type": "module",
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
"scripts": {
|
|
13
|
+
"compact": "compact-compiler",
|
|
14
|
+
"build": "compact-builder && tsc",
|
|
15
|
+
"package": "compact-packager",
|
|
16
|
+
"test": "vitest run",
|
|
17
|
+
"types": "tsc -p tsconfig.json --noEmit",
|
|
18
|
+
"clean": "git clean -fXd"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@buenos_andres/compact": "workspace:^",
|
|
22
|
+
"typescript": "^5.2.2",
|
|
23
|
+
"vitest": "^3.1.3"
|
|
24
|
+
}
|
|
25
|
+
}
|
package/token/MultiToken.compact
CHANGED
package/utils/Utils.compact
CHANGED