-
Notifications
You must be signed in to change notification settings - Fork 9
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
16 changed files
with
3,717 additions
and
4,467 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<div align="center"> | ||
<img src="https://raw.githubusercontent.com/0xsequence/kit/master/public/docs/kit-logo-in-one.png"> | ||
</div> | ||
|
||
# Immutable Connector for Sequence Kit 🧰 | ||
|
||
Connect an Immutable Passport wallet to Sequence Kit. | ||
|
||
## LICENSE | ||
|
||
Apache-2.0 | ||
|
||
Copyright (c) 2017-present Horizon Blockchain Games Inc. / https://horizon.io |
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,55 @@ | ||
{ | ||
"name": "@0xsequence/kit-immutable-connector", | ||
"version": "4.4.4", | ||
"description": "Immutable connector for Sequence Kit", | ||
"keywords": [ | ||
"sequence", | ||
"kit", | ||
"wallet", | ||
"immutable" | ||
], | ||
"repository": "https://github.com/0xsequence/kit/tree/master/packages/immutable-connector", | ||
"author": "Horizon Blockchain Games", | ||
"license": "Apache-2.0", | ||
"main": "dist/cjs/index.js", | ||
"module": "dist/esm/index.js", | ||
"types": "dist/types/index.d.ts", | ||
"exports": { | ||
".": { | ||
"types": "./dist/types/index.d.ts", | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/esm/index.js", | ||
"default": "./dist/esm/index.js" | ||
}, | ||
"./styles.css": "./dist/styles.css" | ||
}, | ||
"files": [ | ||
"src", | ||
"dist" | ||
], | ||
"scripts": { | ||
"build": "pnpm build:clean && pnpm build:esm && pnpm build:cjs && pnpm build:types", | ||
"build:cjs": "tsc --module commonjs --outDir dist/cjs/", | ||
"build:esm": "tsc --module es2022 --outDir dist/esm/", | ||
"build:types": "tsc --declaration --declarationMap --emitDeclarationOnly --declarationDir dist/types/", | ||
"build:clean": "rimraf -g ./dist", | ||
"dev": "tsc --watch --module es2022 --declaration --declarationMap --outDir dist/esm/ --declarationDir dist/types/", | ||
"test": "echo", | ||
"typecheck": "tsc --noEmit" | ||
}, | ||
"dependencies": { | ||
"@imtbl/sdk": "^1.68.0" | ||
}, | ||
"peerDependencies": { | ||
"@0xsequence/kit": "workspace:*", | ||
"viem": ">= 2.0.0", | ||
"wagmi": ">= 2.0.0" | ||
}, | ||
"devDependencies": { | ||
"0xsequence": ">= 2.0.20", | ||
"@0xsequence/kit": "workspace:*", | ||
"ethers": "6.13.0", | ||
"viem": "^2.12.0", | ||
"wagmi": "^2.9.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 |
---|---|---|
@@ -0,0 +1 @@ | ||
export { immutable, type ImmutableOptions } from './kitConnector/immutable' |
3 changes: 1 addition & 2 deletions
3
...rc/connectors/immutable/ImmutableLogo.tsx → ...nector/src/kitConnector/ImmutableLogo.tsx
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
7 changes: 4 additions & 3 deletions
7
...kit/src/connectors/immutable/immutable.ts → ...e-connector/src/kitConnector/immutable.ts
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
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"compilerOptions": { | ||
"esModuleInterop": true, | ||
"skipLibCheck": true, | ||
"target": "es2022", | ||
"allowJs": true, | ||
"resolveJsonModule": true, | ||
"moduleDetection": "force", | ||
"isolatedModules": true, | ||
"strict": true, | ||
// "noUncheckedIndexedAccess": true, | ||
"module": "ESNext", | ||
"moduleResolution": "Node", | ||
"sourceMap": true, | ||
"declaration": false, | ||
"lib": ["es2022", "dom", "dom.iterable"], | ||
"jsx": "react-jsx" | ||
}, | ||
"include": ["./src/**/*.ts", "./src/**/*.tsx"] | ||
} |
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
export * from './sequenceConnector' | ||
export * from './sequenceWaasConnector' | ||
export * from './immutableConnector' |
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.