@coti-io/coti-contracts 1.0.7 → 1.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/hardhat.config.ts CHANGED
@@ -5,7 +5,7 @@ import dotenv from "dotenv"
5
5
  dotenv.config()
6
6
 
7
7
  const config: HardhatUserConfig = {
8
- defaultNetwork: "testnet",
8
+ defaultNetwork: "coti-testnet",
9
9
  solidity: {
10
10
  version: "0.8.19",
11
11
  settings: {
@@ -22,10 +22,14 @@ const config: HardhatUserConfig = {
22
22
  }
23
23
  },
24
24
  networks: {
25
- testnet: {
25
+ "coti-testnet": {
26
26
  url: "https://testnet.coti.io/rpc",
27
27
  chainId: 7082400,
28
28
  },
29
+ "coti-mainnet": {
30
+ url: "https://mainnet.coti.io/rpc",
31
+ chainId: 2632500,
32
+ },
29
33
  },
30
34
  mocha: {
31
35
  timeout: 100000000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coti-io/coti-contracts",
3
- "version": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "description": "A library for smart contract development on the COTI network.",
5
5
  "author": "COTI Development",
6
6
  "repository": {
@@ -23,7 +23,7 @@
23
23
  "hardhat": "^2.22.8"
24
24
  },
25
25
  "dependencies": {
26
- "@coti-io/coti-ethers": "^1.0.3",
26
+ "@coti-io/coti-ethers": "^1.0.5",
27
27
  "@openzeppelin/contracts": "^4.9.6",
28
28
  "dotenv": "^16.4.5"
29
29
  }