@fastnear/borsh-schema 0.9.2 → 0.9.4
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 +9 -0
- package/dist/cjs/index.cjs +2 -2
- package/dist/esm/index.js +2 -2
- package/dist/umd/browser.global.js +2 -2
- package/package.json +10 -2
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# borsh schema for NEAR blockchain
|
|
2
|
+
|
|
3
|
+
This exports the borsh schema. More to follow.
|
|
4
|
+
|
|
5
|
+
## alpha version
|
|
6
|
+
|
|
7
|
+
The focus thus far has been of a highly technical nature, and after releasing this alpha version the devs will let their minds gestate. then this file will fill out with more meaningful info and snippets. 🙏🏼
|
|
8
|
+
|
|
9
|
+
Make sure to visit the [project-level README](https://github.com/fastnear/js-monorepo#global-near-js)
|
package/dist/cjs/index.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* ⋈ 🏃🏻💨 FastNEAR Borsh Schema - CJS (@fastnear/borsh-schema version 0.9.
|
|
2
|
-
/* https://www.npmjs.com/package/@fastnear/borsh-schema/v/0.9.
|
|
1
|
+
/* ⋈ 🏃🏻💨 FastNEAR Borsh Schema - CJS (@fastnear/borsh-schema version 0.9.4) */
|
|
2
|
+
/* https://www.npmjs.com/package/@fastnear/borsh-schema/v/0.9.4 */
|
|
3
3
|
"use strict";
|
|
4
4
|
var __defProp = Object.defineProperty;
|
|
5
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
package/dist/esm/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* ⋈ 🏃🏻💨 FastNEAR Borsh Schema - ESM (@fastnear/borsh-schema version 0.9.
|
|
2
|
-
/* https://www.npmjs.com/package/@fastnear/borsh-schema/v/0.9.
|
|
1
|
+
/* ⋈ 🏃🏻💨 FastNEAR Borsh Schema - ESM (@fastnear/borsh-schema version 0.9.4) */
|
|
2
|
+
/* https://www.npmjs.com/package/@fastnear/borsh-schema/v/0.9.4 */
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
5
5
|
const nearChainSchema = new class BorshSchema {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
/* ⋈ 🏃🏻💨 FastNEAR Borsh Schema - IIFE/UMD (@fastnear/borsh-schema version 0.9.
|
|
2
|
-
/* https://www.npmjs.com/package/@fastnear/borsh-schema/v/0.9.
|
|
1
|
+
/* ⋈ 🏃🏻💨 FastNEAR Borsh Schema - IIFE/UMD (@fastnear/borsh-schema version 0.9.4) */
|
|
2
|
+
/* https://www.npmjs.com/package/@fastnear/borsh-schema/v/0.9.4 */
|
|
3
3
|
"use strict";
|
|
4
4
|
var NearBorshSchema = (() => {
|
|
5
5
|
var __defProp = Object.defineProperty;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fastnear/borsh-schema",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "NEAR Protocol's borsh schema for common applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/esm/index.d.ts",
|
|
@@ -14,10 +14,18 @@
|
|
|
14
14
|
"type-check": "tsc --noEmit"
|
|
15
15
|
},
|
|
16
16
|
"author": "FastNEAR",
|
|
17
|
+
"homepage": "https://js.fastnear.com",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/fastnear/js-monorepo.git"
|
|
21
|
+
},
|
|
17
22
|
"keywords": [
|
|
23
|
+
"binary-serialization",
|
|
24
|
+
"borsh",
|
|
18
25
|
"near-protocol",
|
|
19
26
|
"blockchain",
|
|
20
|
-
"fastnear"
|
|
27
|
+
"fastnear",
|
|
28
|
+
"web3"
|
|
21
29
|
],
|
|
22
30
|
"files": [
|
|
23
31
|
"dist"
|