@mimicprotocol/test-ts 0.0.1-rc.41 → 0.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @mimicprotocol/test-ts
2
2
 
3
+ ## 0.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 54f7344: Add Polygon, Avalanche, and BNB chain support
8
+ - 9a993b0: Add getNativeBalance
9
+ - 8aa883e: Bump sdk and runner versions
10
+ - 32adf4f: Fix ERR_UNSUPPORTED_NODE_MODULES_TYPE_STRIPPING for new node versions
11
+ - 72bb607: Fix relevant tokens query price filter
12
+ - 8853afe: Fix clashing Result import
13
+ - 2bbe278: update eslint config
14
+ - 1e48dff: Bump runner-node to version 0.0.1-rc.8
15
+ - da39b85: Added Tokens class
16
+ - 9530e1c: Revert test command directory change
17
+ - 4a47218: Add function filter to codegen
18
+ - 426a4fe: Environment refactored
19
+ - 73e9713: Add getCode function to get the code of an address (Only EVM)
20
+ - 52b567d: Align oracle types naming convention
21
+ - 6a4fb70: rename to use functions
22
+ - 7657416: Add address and chain to event data
23
+ - e1277c7: Refactor Result to use unwrap instead of value
24
+ - 73a7900: Add login, logout and profiles commands
25
+ - 323663a: Change directory to positional argument in init and test command
26
+ - 213f37f: Fix class names overlapping
27
+ - 73a9cde: Fix npx init
28
+ - faac37c: Ensure early returns in favor of else blocks
29
+ - 0a6602a: Handle oracle query errors
30
+ - 48352fe: Add runner target on compilation
31
+ - ed2d252: Refactor credentials commands
32
+ - 21aba8d: Improve mocks error messages
33
+ - 94ef728: add custom storage
34
+ - 5c8c562: Fix MockConfig validator
35
+ - d455822: Bump SDK version
36
+ - 7d2279d: Refactor codegen, compile, build, deploy and test commands and their parameters
37
+
3
38
  ## 0.0.1-rc.41
4
39
 
5
40
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mimicprotocol/test-ts",
3
- "version": "0.0.1-rc.41",
3
+ "version": "0.0.1",
4
4
  "license": "GPL-3.0",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
@@ -14,8 +14,8 @@
14
14
  "dist"
15
15
  ],
16
16
  "dependencies": {
17
- "@mimicprotocol/runner-node": "^0.0.1-rc.14",
18
- "@mimicprotocol/sdk": "^0.0.1-rc.33",
17
+ "@mimicprotocol/runner-node": "^0.0.1",
18
+ "@mimicprotocol/sdk": "^0.0.1",
19
19
  "ethers": "^6.15.0",
20
20
  "zod": "^3.24.1"
21
21
  },