Skip to content

Commit 799829b

Browse files
authored
Merge pull request #151 from hyperweb-io/removals-ethers_eip712
Removals ethers and eip712
2 parents 6169ac9 + 1580d17 commit 799829b

File tree

16 files changed

+26
-231
lines changed

16 files changed

+26
-231
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ graph LR
8282
cosmos_signer --> cosmos_amino["Amino Signer"]
8383
cosmos_signer --> cosmos_direct["Direct Signer"]
8484
85-
ethereum_signer --> ethereum_eip712["EIP712 Signer"]
85+
ethereum_signer --> signer_from_from_private_key["Signer From Private Key"]
86+
ethereum_signer --> signer_from_from_browser["Signer From Browser"]
8687
8788
injective_signer --> injective_amino["Amino Signer"]
8889
injective_signer --> injective_direct["Direct Signer"]

docs/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ graph LR
8282
cosmos_signer --> cosmos_amino["Amino Signer"]
8383
cosmos_signer --> cosmos_direct["Direct Signer"]
8484
85-
ethereum_signer --> ethereum_eip712["EIP712 Signer"]
85+
ethereum_signer --> signer_from_from_private_key["Signer From Private Key"]
86+
ethereum_signer --> signer_from_from_browser["Signer From Browser"]
8687
8788
injective_signer --> injective_amino["Amino Signer"]
8889
injective_signer --> injective_direct["Direct Signer"]

docs/libs/interchainjs/index.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ graph LR
104104
cosmos_signer --> cosmos_amino["Amino Signer"]
105105
cosmos_signer --> cosmos_direct["Direct Signer"]
106106
107-
ethereum_signer --> ethereum_eip712["EIP712 Signer"]
107+
ethereum_signer --> signer_from_from_private_key["Signer From Private Key"]
108+
ethereum_signer --> signer_from_from_browser["Signer From Browser"]
108109
109110
injective_signer --> injective_amino["Amino Signer"]
110111
injective_signer --> injective_direct["Direct Signer"]

docs/networks/injective/index.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ console.log(result.hash); // the hash of TxRaw
5353

5454
- **direct signer** from `@interchainjs/injective/signers/direct`
5555
- **amino signer** from `@interchainjs/injective/signers/amino`
56-
- **eip712 signer** from `@interchainjs/injective/signers/eip712`
5756

5857
## Interchain JavaScript Stack ⚛️
5958

libs/interchainjs/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ graph LR
104104
cosmos_signer --> cosmos_amino["Amino Signer"]
105105
cosmos_signer --> cosmos_direct["Direct Signer"]
106106
107-
ethereum_signer --> ethereum_eip712["EIP712 Signer"]
107+
ethereum_signer --> signer_from_from_private_key["Signer From Private Key"]
108+
ethereum_signer --> signer_from_from_browser["Signer From Browser"]
108109
109110
injective_signer --> injective_amino["Amino Signer"]
110111
injective_signer --> injective_direct["Direct Signer"]

networks/ethereum/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@
2424
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
2525
"lint": "eslint . --fix",
2626
"test:devnet": "npx jest --preset ts-jest devnet/__tests__/send.icjs.test.ts",
27-
"test:ethers": "npx jest --preset ts-jest devnet/__tests__/ethers.test.ts",
28-
"test:noethers": "npx jest --preset ts-jest devnet/__tests__/noethers.test.ts",
2927
"run-ganache": "bash devnet/run-ganache.sh",
3028
"starship": "starship start --config ./starship/configs/eth-lite.yaml",
3129
"starship:stop": "starship stop",
@@ -41,7 +39,6 @@
4139
"@interchainjs/utils": "1.11.15",
4240
"@noble/hashes": "^1.3.1",
4341
"ethereum-cryptography": "^3.1.0",
44-
"ethers": "^6.13.4",
4542
"rlp": "^3.0.0"
4643
},
4744
"keywords": [
@@ -53,4 +50,4 @@
5350
"@starship-ci/cli": "3.10.0",
5451
"starshipjs": "^3.3.0"
5552
}
56-
}
53+
}

networks/ethereum/src/api/rpc.ts

Lines changed: 0 additions & 20 deletions
This file was deleted.

networks/ethereum/src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
export * from './api/rpc'
21
export * from './providers/WebSocketContractMonitor';
32
export * from './providers/WebSocketProvider';
43
export * from './signers/SignerFromBrowser';
54
export * from './signers/SignerFromPrivateKey';
6-
export * from './signers/eip712';
75
export * from './types';
86
export * from './utils';

networks/ethereum/src/signers/eip712.ts

Lines changed: 0 additions & 65 deletions
This file was deleted.

networks/ethereum/src/types/docAuth.ts

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)