Skip to content

Commit 85c1150

Browse files
authored
DX-2420: Updated the package name from zkEVM-contracts to contracts (#122)
1 parent e2f5dc2 commit 85c1150

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Immutable zkEVM Contracts
1+
# Immutable Contracts
22

33
<p align="center"><img src="https://cdn.dribbble.com/users/1299339/screenshots/7133657/media/837237d447d36581ebd59ec36d30daea.gif" width="280"/></p>
44

5-
zkEVM Contracts is a library of smart contracts targeted at developers who wish to quickly build and deploy their smart contracts on the Immutable zkEVM, a general-purpose permissionless L2 zero-knowledge rollup. The library allows developers to build on contracts curated by Immutable, including (but not limited to):
5+
Immutable Contracts is a library of smart contracts targeted at developers who wish to quickly build and deploy their smart contracts on the Immutable X and Immutable zkEVM, a general-purpose permissionless L2 zero-knowledge rollup. The library allows developers to build on contracts curated by Immutable, including (but not limited to):
66

77
- Token presets, e.g. ERC721
88

@@ -19,19 +19,19 @@ These contracts are feature-rich and are the recommended standard on Immutable z
1919
### Installation
2020

2121
```
22-
$ yarn install @imtbl/zkevm-contracts
22+
$ yarn install @imtbl/contracts
2323
```
2424

2525
### Usage
2626

2727
#### Contracts
2828

29-
Once the `zkevm-contracts` package is installed, use the contracts from the library by importing them:
29+
Once the `contracts` package is installed, use the contracts from the library by importing them:
3030

3131
```solidity
3232
pragma solidity ^0.8.0;
3333
34-
import "@imtbl/zkevm-contracts/contracts/token/erc721/preset/ImmutableERC721.sol";
34+
import "@imtbl/contracts/contracts/token/erc721/preset/ImmutableERC721.sol";
3535
3636
contract MyERC721 is ImmutableERC721 {
3737
constructor(
@@ -59,15 +59,15 @@ contract MyERC721 is ImmutableERC721 {
5959

6060
#### SDK client
6161

62-
`zkevm-contracts` comes with a Typescript SDK client that can be used to interface with Immutable preset contracts:
62+
`contracts` comes with a Typescript SDK client that can be used to interface with Immutable preset contracts:
6363

6464
- ImmutableERC721
6565
- ImmutableERC721MintByID
6666

6767
To import and use the ImmutableERC721 contract client:
6868

6969
```typescript
70-
import { ERC721Client } from "@imtbl/zkevm-contracts";
70+
import { ERC721Client } from "@imtbl/contracts";
7171

7272
const contractAddress = YOUR_CONTRACT_ADDRESS;
7373

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@imtbl/zkevm-contracts",
3-
"description": "Immutable zkEVM Smart Contracts",
2+
"name": "@imtbl/contracts",
3+
"description": "Immutable Smart Contracts",
44
"version": "0.0.0",
55
"main": "dist/clients/index.js",
66
"types": "dist/clients/index.d.ts",
@@ -20,9 +20,9 @@
2020
"type": "commonjs",
2121
"repository": {
2222
"type": "git",
23-
"url": "https://github.com/immutable/zkevm-contracts"
23+
"url": "https://github.com/immutable/contracts"
2424
},
25-
"homepage": "https://github.com/immutable/zkevm-contracts/blob/main/README.md",
25+
"homepage": "https://github.com/immutable/contracts/blob/main/README.md",
2626
"author": "Immutable",
2727
"license": "Apache-2.0",
2828
"devDependencies": {

0 commit comments

Comments
 (0)