@nibiruchain/nibiru-linux-arm64 2.0.0 → 2.1.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/LICENSE.md ADDED
@@ -0,0 +1,23 @@
1
+ Copyright (c) 2025, MTRX Services Ltd.
2
+
3
+ All rights reserved. See https://opensource.org/license/bsd-2-clause.
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+ 2. Redistributions in binary form must reproduce the above copyright notice,
11
+ this list of conditions and the following disclaimer in the documentation
12
+ and/or other materials provided with the distribution.
13
+
14
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
15
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
18
+ ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @nibiruchain/nibiru-linux-arm64
2
+
3
+ Native `nibid` binary for Linux arm64. The umbrella package
4
+ [`@nibiruchain/nibiru`](https://www.npmjs.com/package/@nibiruchain/nibiru)
5
+ installs this package automatically on supported Linux arm64 hosts.
6
+
7
+ Install the umbrella package unless you deliberately manage platform packages:
8
+
9
+ ```bash
10
+ bun add --global @nibiruchain/nibiru
11
+ nibiru version
12
+ ```
13
+
14
+ See the [Nibiru CLI documentation](https://nibiru.fi/docs/dev/cli) for command
15
+ usage and node setup.
package/bin/nibid CHANGED
Binary file
package/package.json CHANGED
@@ -1,8 +1,17 @@
1
1
  {
2
2
  "name": "@nibiruchain/nibiru-linux-arm64",
3
- "version": "2.0.0",
4
- "description": "Native nibid binary for Linux arm64",
5
- "license": "Apache-2.0",
3
+ "version": "2.1.0",
4
+ "description": "Native Nibiru command-line binary for Linux arm64",
5
+ "license": "BSD-2-Clause",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/NibiruChain/nibiru.git",
9
+ "directory": "x/clidist"
10
+ },
11
+ "homepage": "https://nibiru.fi/docs/dev/cli",
12
+ "bugs": {
13
+ "url": "https://github.com/NibiruChain/nibiru/issues"
14
+ },
6
15
  "os": [
7
16
  "linux"
8
17
  ],
@@ -10,6 +19,8 @@
10
19
  "arm64"
11
20
  ],
12
21
  "files": [
13
- "bin/nibid"
22
+ "bin/nibid",
23
+ "README.md",
24
+ "LICENSE.md"
14
25
  ]
15
26
  }