Skip to content

Commit

Permalink
deploys contracts to Polygon testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
koshikraj committed Sep 8, 2022
1 parent fc7539c commit 440f132
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 24 deletions.
1 change: 0 additions & 1 deletion hardhat.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
require('dotenv').config();
require('@nomiclabs/hardhat-waffle');
const fs = require('fs');
const { network } = require('./constants');
Expand Down
18 changes: 2 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@safient/contracts",
"version": "0.1.17-alpha",
"version": "0.1.18-alpha",
"description": "JavaScript SDK to manage and interact with the safe claims on Safient protocol.",
"keywords": [
"Web3",
Expand Down Expand Up @@ -62,7 +62,6 @@
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"did-jwt": "^5.6.2",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.3.0",
"ethereumjs-wallet": "0.6.5",
"ethers": "^5.4.3",
Expand Down
3 changes: 1 addition & 2 deletions src/utils/networks.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const dotenv = require('dotenv');
dotenv.config();


const INFURA_API_KEY = process.env.INFURA_API_KEY || process.env.REACT_APP_INFURA_API_KEY;

Expand Down
2 changes: 1 addition & 1 deletion src/utils/networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"chainId": 80001,
"addresses": {
"AutoAppealableArbitrator": "0xf54D6b97749ECD28F9EbF836Ed9cE0C387a2f0A1",
"SafientMain": "0xccA53824ce8944a3cB7b21139bd177DEEe6e27C0"
"SafientMain": "0x8C2FA3dE952f5A1c463af0Fb42a9A812D3Ffe9e3"
}
}
}
2 changes: 0 additions & 2 deletions test-sdk/claims.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ const { ethers } = require('hardhat');
const { JsonRpcProvider } = require('@ethersproject/providers');
const chai = require('chai');

require('dotenv').config();

const expect = chai.expect;
chai.use(require('chai-as-promised'));

Expand Down

0 comments on commit 440f132

Please sign in to comment.