@undercurrent-technologies/messina-sdk 0.10.8

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 (3) hide show
  1. package/LICENSE +14 -0
  2. package/README.md +5 -0
  3. package/package.json +88 -0
package/LICENSE ADDED
@@ -0,0 +1,14 @@
1
+ Copyright 2020 Wormhole Project Contributors
2
+ Modifications copyright 2022 Messina Project Contributors
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ ## Deprecation Notice
2
+
3
+ :warning: **This package is deprecated and no longer maintained.**
4
+
5
+ It has been **moved to**: `https://www.npmjs.com/package/@undercurrent-technologies/messina-sdk`. This package may receive no further updates or security fixes.
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "@undercurrent-technologies/messina-sdk",
3
+ "version": "0.10.8",
4
+ "description": "The official SDK for Messina Bridge.",
5
+ "homepage": "https://messina.one",
6
+ "main": "./lib/cjs/index.js",
7
+ "module": "./lib/esm/index.js",
8
+ "files": [
9
+ "lib/"
10
+ ],
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "git+https://github.com/Undercurrent-Technologies/messina-sdk.git"
14
+ },
15
+ "author": "messina project contributors",
16
+ "scripts": {
17
+ "build-contracts": "npm run build --prefix ../../ethereum && node scripts/copyContracts.js && typechain --target=ethers-v5 --out-dir=src/ethers-contracts contracts/*.json",
18
+ "build-abis": "typechain --target=ethers-v5 --out-dir=src/ethers-contracts/abi src/abi/Core.abi.json",
19
+ "build-idl": "node scripts/compileAnchorIdls.js",
20
+ "build-deps": "npm run build-abis && npm run build-contracts",
21
+ "build-lib": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node scripts/copyEthersTypes.js",
22
+ "build-all": "npm run build-deps && npm run build-lib",
23
+ "copy-mc": "cp -R cjs/. lib/cjs && cp -R esm/. lib/esm && cp -R protos/. lib/protos",
24
+ "build": "npm run build-all && npm run copy-mc",
25
+ "format": "echo \"disabled: prettier --write \"src/**/*.ts\"\"",
26
+ "lint": "tslint -p tsconfig.json",
27
+ "prepublishOnly": "echo \"disabled: npm test && npm run lint\""
28
+ },
29
+ "keywords": [
30
+ "messina",
31
+ "bridge",
32
+ "token",
33
+ "sdk",
34
+ "algorand",
35
+ "ethereum"
36
+ ],
37
+ "license": "Apache-2.0",
38
+ "devDependencies": {
39
+ "@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
40
+ "@openzeppelin/contracts": "^4.2.0",
41
+ "@types/elliptic": "^6.4.14",
42
+ "@types/jest": "^27.0.2",
43
+ "@types/jsonfile": "^6.1.0",
44
+ "@types/lodash": "^4.17.5",
45
+ "@types/long": "^4.0.1",
46
+ "@types/node": "^16.6.1",
47
+ "@types/react": "^17.0.19",
48
+ "copy-dir": "^1.3.0",
49
+ "elliptic": "^6.5.2",
50
+ "ethers": "^5.4.4",
51
+ "jest": "^27.3.1",
52
+ "jsonfile": "^4.0.0",
53
+ "prettier": "^2.3.2",
54
+ "ts-jest": "^27.0.7",
55
+ "tslint": "^6.1.3",
56
+ "tslint-config-prettier": "^1.18.0",
57
+ "typescript": "^5.4.5",
58
+ "web3": "^1.6.1"
59
+ },
60
+ "dependencies": {
61
+ "@aptos-labs/ts-sdk": "^1.38.0",
62
+ "@certusone/wormhole-sdk-wasm": "^0.0.1",
63
+ "@coral-xyz/borsh": "0.2.6",
64
+ "@grpc/grpc-js": "^1.5.10",
65
+ "@grpc/proto-loader": "^0.7.8",
66
+ "@improbable-eng/grpc-web": "^0.14.0",
67
+ "@metaplex-foundation/js": "^0.20.1",
68
+ "@metaplex-foundation/mpl-token-metadata": "^2.8.6",
69
+ "@project-serum/anchor": "^0.25.0",
70
+ "@solana/spl-token": "^0.3.5",
71
+ "@solana/web3.js": "^1.66.2",
72
+ "@typechain/ethers-v5": "^10.0.0",
73
+ "algosdk": "^2.4.0",
74
+ "aptos": "^1.21.0",
75
+ "axios": "^1.4.0",
76
+ "bech32": "^2.0.0",
77
+ "binary-parser": "^2.2.1",
78
+ "bs58": "^5.0.0",
79
+ "buffer-layout": "^1.2.2",
80
+ "dotenv": "^16.4.5",
81
+ "js-base64": "^3.6.1",
82
+ "lodash": "^4.17.21",
83
+ "protobufjs": "^7.2.4",
84
+ "rxjs": "^7.3.0",
85
+ "typechain": "^8.0.0",
86
+ "uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.3.0"
87
+ }
88
+ }