diff --git a/README.md b/README.md
index 3d41b1e1..9bc73029 100644
--- a/README.md
+++ b/README.md
@@ -82,12 +82,12 @@ We created a specific package to make it easy to migrate from `@cosmjs`.
- [interchainjs](/networks/cosmjs/README.md)
-## Injective Network
+## ethermint Network
### Transactions
-- [@interchainjs/injective](/networks/injective/README.md)
-- `@interchainjs/injective-msgs`(on progress)
+- [@interchainjs/ethermint](/networks/ethermint/README.md)
+- `@interchainjs/ethermint-msgs`(on progress)
## Ethereum Network
diff --git a/networks/ethermint/README.md b/networks/ethermint/README.md
index f3523dfb..8eef111d 100644
--- a/networks/ethermint/README.md
+++ b/networks/ethermint/README.md
@@ -17,14 +17,14 @@ Transaction codec and client to communicate with any injective blockchain.
## Usage
```sh
-npm install @interchainjs/injective
+npm install @interchainjs/ethermint
```
Taking `direct` signing mode as example.
```ts
-// import * from "@interchainjs/injective"; // Error: use sub-imports, to ensure small app size
-import { DirectSigner } from "@interchainjs/injective/direct";
+// import * from "@interchainjs/ethermint"; // Error: use sub-imports, to ensure small app size
+import { DirectSigner } from "@interchainjs/ethermint/direct";
const signer = new DirectSigner(, [], ); // **ONLY** rpc endpoint is supported for now
const result = await signer.signAndBroadcast([]);
@@ -32,13 +32,13 @@ console.log(result.hash); // the hash of TxRaw
```
- See [@interchainjs/auth](/packages/auth/README.md) to construct ``
-- See `@interchainjs/injective-msgs`(on progress) to construct ``s and ``s, and also different message types.
+- See `@interchainjs/ethermint-msgs`(on progress) to construct ``s and ``s, and also different message types.
## Implementations
-- **direct signer** from `@interchainjs/injective/direct`
-- **amino signer** from `@interchainjs/injective/amino`
-- **eip712 signer** from `@interchainjs/injective/eip712`
+- **direct signer** from `@interchainjs/ethermint/direct`
+- **amino signer** from `@interchainjs/ethermint/amino`
+- **eip712 signer** from `@interchainjs/ethermint/eip712`
## License
diff --git a/networks/ethermint/src/index.ts b/networks/ethermint/src/index.ts
index a7f3afa0..d1b131f3 100644
--- a/networks/ethermint/src/index.ts
+++ b/networks/ethermint/src/index.ts
@@ -1,3 +1,3 @@
throw new Error(
- '@interchainjs/injective have no entry-point: consult README for usage'
+ '@interchainjs/ethermint have no entry-point: consult README for usage'
);
diff --git a/packages/auth/README.md b/packages/auth/README.md
index 3be09259..a0d082dd 100644
--- a/packages/auth/README.md
+++ b/packages/auth/README.md
@@ -4,7 +4,6 @@
-