-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from MultipleChain/beycan
Beycan
- Loading branch information
Showing
32 changed files
with
5,397 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"extends": [ | ||
"plugin:require-extensions/recommended", | ||
"../../.eslintrc.json" | ||
], | ||
"plugins": ["require-extensions"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
src | ||
tests | ||
node_modules | ||
.eslintrc.cjs | ||
pnpm-lock.yaml | ||
tsconfig.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# MultipleChain Wrapper | ||
|
||
MultipleChain aims for easy access by simplifying the complex structure of many blockchains. For example, each blockchain network has a different structure for transfer initiation or transaction data. You may need to learn new things from scratch for each blockchain network. This is necessary if you want to go into detail. But if you just want to get to the basics. MultipleChain will make your work much easier. In many different programming languages. | ||
|
||
#### 📚 [Documentation](https://multiplechain.gitbook.io/multiplechain-docs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
void import('../../esbuild.ts').then((module) => { | ||
module.default() | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ | ||
"name": "@multiplechain/wrapper", | ||
"version": "0.1.0", | ||
"type": "module", | ||
"main": "dist/index.cjs", | ||
"module": "dist/index.es.js", | ||
"unpkg": "dist/index.umd.js", | ||
"browser": "dist/index.umd.js", | ||
"jsdelivr": "dist/index.umd.js", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"default": "./dist/index.es.js", | ||
"types": "./dist/browser/index.d.ts" | ||
}, | ||
"require": { | ||
"default": "./dist/index.cjs", | ||
"types": "./dist/index.d.ts" | ||
} | ||
}, | ||
"./node": { | ||
"default": "./dist/index.cjs", | ||
"types": "./dist/index.d.ts" | ||
}, | ||
"./browser": { | ||
"default": "./dist/index.es.js", | ||
"types": "./dist/browser/index.d.ts" | ||
} | ||
}, | ||
"typesVersions": { | ||
"*": { | ||
"node": [ | ||
"./dist/index.d.ts" | ||
], | ||
"browser": [ | ||
"./dist/browser/index.d.ts" | ||
] | ||
} | ||
}, | ||
"files": [ | ||
"dist", | ||
"README.md", | ||
"!tsconfig.tsbuildinfo" | ||
], | ||
"scripts": { | ||
"clean": "rm -rf dist", | ||
"watch": "tsc --watch", | ||
"build:vite": "vite build", | ||
"build:node": "tsx esbuild.ts", | ||
"typecheck": "tsc --noEmit", | ||
"lint": "eslint . --ext .ts", | ||
"test": "vitest run --dir tests", | ||
"test-ui": "vitest watch --ui", | ||
"prepublishOnly": "pnpm run build", | ||
"build": "pnpm run build:vite && pnpm run build:node" | ||
}, | ||
"keywords": [ | ||
"web3", | ||
"crypto", | ||
"blockchain", | ||
"multiple-chain" | ||
], | ||
"author": "MultipleChain", | ||
"license": "MIT", | ||
"homepage": "https://github.com/MultipleChain/js/tree/master/packages/wrapper", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/MultipleChain/js.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/MultipleChain/js/issues" | ||
}, | ||
"dependencies": { | ||
"@multiplechain/types": "^0.1.64", | ||
"@multiplechain/utils": "^0.1.21" | ||
}, | ||
"devDependencies": { | ||
"@multiplechain/evm-chains": "^0.4.1", | ||
"@multiplechain/tron": "^0.4.2" | ||
} | ||
} |
Oops, something went wrong.