-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
195 changed files
with
3,855 additions
and
31,778 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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 |
---|---|---|
@@ -1,44 +1,44 @@ | ||
{ | ||
"author": "Jaco Greeff <[email protected]>", | ||
"bugs": "https://github.com/polkagate/extension/issues", | ||
"contributors": [], | ||
"description": "Functions, classes and other utilities used in @polkadot/extension", | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"homepage": "https://github.com/polkagate/extension/tree/master/packages/extension-base#readme", | ||
"license": "Apache-2.0", | ||
"maintainers": [], | ||
"name": "@polkadot/extension-base", | ||
"repository": { | ||
"directory": "packages/extension-base", | ||
"type": "git", | ||
"url": "https://github.com/polkagate/extension.git" | ||
}, | ||
"sideEffects": [ | ||
"./detectPackage.js", | ||
"./detectPackage.cjs" | ||
"./packageDetect.js", | ||
"./packageDetect.cjs" | ||
], | ||
"type": "module", | ||
"version": "0.44.1", | ||
"version": "0.47.5", | ||
"main": "index.js", | ||
"dependencies": { | ||
"@babel/runtime": "^7.18.3", | ||
"@polkadot/api": "^11.2.1", | ||
"@polkadot/extension-chains": "^0.44.1", | ||
"@polkadot/extension-dapp": "^0.44.1", | ||
"@polkadot/extension-inject": "^0.44.1", | ||
"@polkadot/extension-chains": "^0.47.5", | ||
"@polkadot/extension-dapp": "^0.47.5", | ||
"@polkadot/extension-inject": "^0.47.5", | ||
"@polkadot/keyring": "12.3.2", | ||
"@polkadot/networks": "^12.6.2", | ||
"@polkadot/phishing": "latest", | ||
"@polkadot/rpc-provider": "^11.2.1", | ||
"@polkadot/types": "^10.9.1", | ||
"@polkadot/ui-keyring": "3.6.6", | ||
"@polkadot/ui-settings": "latest", | ||
"@polkadot/types": "latest", | ||
"@polkadot/ui-keyring": "^3.6.6", | ||
"@polkadot/ui-settings": "^3.6.6", | ||
"@polkadot/util": "^12.6.2", | ||
"@polkadot/util-crypto": "^12.6.2", | ||
"eventemitter3": "^5.0.1", | ||
"rxjs": "^7.8.1", | ||
"tslib": "^2.6.2" | ||
}, | ||
"devDependencies": { | ||
"@polkadot/extension-mocks": "^0.44.1" | ||
"@polkadot/extension-mocks": "^0.47.5" | ||
} | ||
} |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// Copyright 2019-2024 @polkadot/extension-base authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
export { packageInfo } from './packageInfo'; | ||
export { packageInfo } from './packageInfo.js'; |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,14 @@ | ||
// Copyright 2017-2024 @polkadot/extension-base authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Do not edit, auto-generated by @polkadot/dev | ||
// (packageInfo imports will be kept as-is, user-editable) | ||
|
||
import { packageInfo as chainsInfo } from '@polkadot/extension-chains/packageInfo'; | ||
import { packageInfo as dappInfo } from '@polkadot/extension-dapp/packageInfo'; | ||
import { packageInfo as injectInfo } from '@polkadot/extension-inject/packageInfo'; | ||
import { detectPackage } from '@polkadot/util'; | ||
|
||
import { packageInfo } from './packageInfo.js'; | ||
|
||
detectPackage(packageInfo, null, [chainsInfo, dappInfo, injectInfo]); |
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 |
---|---|---|
@@ -1,30 +1,31 @@ | ||
{ | ||
"author": "Jaco Greeff <[email protected]>", | ||
"bugs": "https://github.com/polkagate/extension/issues", | ||
"contributors": [], | ||
"description": "Definitions for all known chains as exposed by the extension.", | ||
"engines": { | ||
"node": ">=18" | ||
}, | ||
"homepage": "https://github.com/polkagate/extension/tree/master/packages/extension-chains#readme", | ||
"license": "Apache-2.0", | ||
"maintainers": [], | ||
"name": "@polkadot/extension-chains", | ||
"repository": { | ||
"directory": "packages/extension-chains", | ||
"type": "git", | ||
"url": "https://github.com/polkagate/extension.git" | ||
}, | ||
"sideEffects": [ | ||
"./detectPackage.js", | ||
"./detectPackage.cjs" | ||
"./packageDetect.js", | ||
"./packageDetect.cjs" | ||
], | ||
"type": "module", | ||
"version": "0.44.1", | ||
"version": "0.47.5", | ||
"main": "index.js", | ||
"dependencies": { | ||
"@babel/runtime": "^7.18.3", | ||
"@polkadot/extension-inject": "^0.44.1", | ||
"@polkadot/networks": "latest", | ||
"@polkadot/util": "latest", | ||
"@polkadot/util-crypto": "latest" | ||
"@polkadot/extension-inject": "^0.47.5", | ||
"@polkadot/networks": "^12.6.2", | ||
"@polkadot/util": "^12.6.2", | ||
"@polkadot/util-crypto": "^12.6.2", | ||
"tslib": "^2.6.2" | ||
}, | ||
"peerDependencies": { | ||
"@polkadot/api": "*", | ||
|
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
// Copyright 2017-2024 @polkadot/extension-chains authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Do not edit, auto-generated by @polkadot/dev | ||
// (packageInfo imports will be kept as-is, user-editable) | ||
|
||
import { packageInfo as injectInfo } from '@polkadot/extension-inject/packageInfo'; | ||
import { detectPackage } from '@polkadot/util'; | ||
|
||
import { packageInfo } from './packageInfo.js'; | ||
|
||
detectPackage(packageInfo, null, [injectInfo]); |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
// Copyright 2017-2024 @polkadot/extension-compat-metamask authors & contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Do not edit, auto-generated by @polkadot/dev | ||
// (packageInfo imports will be kept as-is, user-editable) | ||
|
||
import { packageInfo as injectInfo } from '@polkadot/extension-inject/packageInfo'; | ||
import { detectPackage } from '@polkadot/util'; | ||
|
||
import { packageInfo } from './packageInfo.js'; | ||
|
||
detectPackage(packageInfo, null, [injectInfo]); |
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
Oops, something went wrong.