@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 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/@daddy-compact/accessControl/src/AccessControl" prefix AccessControl_;
18
+ * import "./node_modules/@openzeppelin-compact/accessControl/src/AccessControl" prefix AccessControl_;
18
19
  *
19
20
  * export sealed ledger MY_ROLE: Bytes<32>;
20
21
  *
@@ -1,4 +1,5 @@
1
1
  // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (access/Ownable.compact)
2
3
 
3
4
  pragma language_version >= 0.16.0;
4
5
 
@@ -1 +1,3 @@
1
+ // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (access/witnesses/AccessControlWitnesses.ts)
1
3
  export const AccessControlWitnesses = {};
@@ -1 +1,3 @@
1
+ // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (access/witnesses/OwnableWitnesses.ts)
1
3
  export const OwnableWitnesses = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@buenos_andres/contracts",
3
- "version": "0.0.1-test.3",
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
- "files": [
13
- "**/*.compact",
14
- "**/witnesses/**/*"
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
+ }
@@ -1,4 +1,5 @@
1
1
  // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (security/Initializable.compact)
2
3
 
3
4
  pragma language_version >= 0.16.0;
4
5
 
@@ -1,4 +1,5 @@
1
1
  // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (security/Pausable.compact)
2
3
 
3
4
  pragma language_version >= 0.16.0;
4
5
 
@@ -1 +1,3 @@
1
+ // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (security/witnesses/InitializableWitnesses.ts)
1
3
  export const InitializableWitnesses = {};
@@ -1 +1,3 @@
1
+ // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (security/witnesses/PausableWitnesses.ts)
1
3
  export const PausableWitnesses = {};
@@ -1,4 +1,5 @@
1
1
  // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (token/FungibleToken.compact)
2
3
 
3
4
  pragma language_version >= 0.16.0;
4
5
 
@@ -1,4 +1,5 @@
1
1
  // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (token/MultiToken.compact)
2
3
 
3
4
  pragma language_version >= 0.16.0;
4
5
 
@@ -1,4 +1,5 @@
1
1
  // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (token/NonFungibleToken.compact)
2
3
 
3
4
  pragma language_version >= 0.16.0;
4
5
 
@@ -1 +1,3 @@
1
+ // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (token/witnesses/FungibleTokenWitnesses.ts)
1
3
  export const FungibleTokenWitnesses = {};
@@ -1 +1,3 @@
1
+ // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (token/witnesses/MultiTokenWitnesses.ts)
1
3
  export const MultiTokenWitnesses = {};
@@ -1 +1,3 @@
1
+ // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (token/witnesses/NonFungibleTokenWitnesses.ts)
1
3
  export const NonFungibleTokenWitnesses = {};
@@ -1,4 +1,5 @@
1
1
  // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (utils/Utils.compact)
2
3
 
3
4
  pragma language_version >= 0.16.0;
4
5
 
@@ -1 +1,3 @@
1
+ // SPDX-License-Identifier: MIT
2
+ // MyFun Contracts v0.1.1 (utils/witnesses/UtilsWitnesses.ts)
1
3
  export const UtilsWitnesses = {};
@@ -1,3 +0,0 @@
1
- // This is how we type an empty object.
2
- export type AccessControlPrivateState = Record<string, never>;
3
- export const AccessControlWitnesses = {};
@@ -1,3 +0,0 @@
1
- // This is how we type an empty object.
2
- export type OwnablePrivateState = Record<string, never>;
3
- export const OwnableWitnesses = {};
@@ -1,3 +0,0 @@
1
- // This is how we type an empty object.
2
- export type InitializablePrivateState = Record<string, never>;
3
- export const InitializableWitnesses = {};
@@ -1,3 +0,0 @@
1
- // This is how we type an empty object.
2
- export type PausablePrivateState = Record<string, never>;
3
- export const PausableWitnesses = {};
@@ -1,3 +0,0 @@
1
- // This is how we type an empty object.
2
- export type FungibleTokenPrivateState = Record<string, never>;
3
- export const FungibleTokenWitnesses = {};
@@ -1,3 +0,0 @@
1
- // This is how we type an empty object.
2
- export type MultiTokenPrivateState = Record<string, never>;
3
- export const MultiTokenWitnesses = {};
@@ -1,3 +0,0 @@
1
- // This is how we type an empty object.
2
- export type NonFungibleTokenPrivateState = Record<string, never>;
3
- export const NonFungibleTokenWitnesses = {};
@@ -1,3 +0,0 @@
1
- // This is how we type an empty object.
2
- export type UtilsPrivateState = Record<string, never>;
3
- export const UtilsWitnesses = {};