Skip to content

Commit 14946ac

Browse files
authored
Merge pull request #1 from manav2401/cleanup
Cleanup
2 parents 41b1dbe + 1d04f73 commit 14946ac

7 files changed

+795
-738
lines changed

.env.tpl

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
# user's wallet address and private key
3+
USER_ADDRESS=
4+
USER_PRIVATE_KEY=
5+
6+
# biconomy api key
7+
BICONOMY_API_KEY=
8+
9+
# cuperFluid contract (post deployment)
10+
CUPERFLUID_CONTRACT_ADDRESS=
11+
12+
# address of receiver
13+
RECEIVER_ADDRESS=
14+
15+
# backend endpoint for validating
16+
BACKEND_ENDPOINT=
17+
18+
# rpc-provider
19+
RPC_PROVIDER_ENDPOINT=

contracts/Cuperfluid.sol

+1
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ contract Cuperfluid is ChainlinkClient, SuperAppBase, BaseRelayRecipient {
124124
((stream.iteration + 1) * stream.checkpointInterval)
125125
)
126126
);
127+
// string memory url = "https://secure-fortress-91179.herokuapp.com/validate?token=5c03fe67f60a8dcbc5df674f0a8df8f2&from=1&to=1";
127128
/* solhint-enable not-rely-on-time */
128129

129130
// create new chainlink request

hardhat.config.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ require("dotenv").config();
1515
// Go to https://hardhat.org/config/ to learn more
1616

1717
const PRIVATE_KEY = process.env.PRIVATE_KEY || "";
18+
const rpcProvider = process.env.RPC_PROVIDER_ENDPOINT;
1819

1920
/**
2021
* @type import('hardhat/config').HardhatUserConfig
@@ -23,10 +24,10 @@ module.exports = {
2324
defaultNetwork: "mumbai",
2425
networks: {
2526
mumbai: {
26-
url: "https://rpc-mumbai.maticvigil.com",
27+
url: rpcProvider,
2728
accounts: [PRIVATE_KEY],
28-
gas: 2100000,
29-
gasPrice: 8000000000,
29+
gas: 6721975,
30+
gasPrice: 20000000000,
3031
},
3132
},
3233
solidity: "0.8.0",

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"@openzeppelin/contracts": "^4.3.2",
3737
"@superfluid-finance/ethereum-contracts": "^1.0.0-rc.7",
3838
"dotenv": "^10.0.0",
39-
"eth-sig-util": "^3.0.1"
39+
"eth-sig-util": "^3.0.1",
40+
"solc": "0.8.0"
4041
}
4142
}

scripts/2-simulate-sender.js

+10-10
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,23 @@ let endStream = false;
2727
async function main() {
2828
console.log("Starting `Sender` Simulation");
2929

30-
// constants
31-
const privateKey = process.env.PRIVATE_KEY || "";
30+
// env vars
31+
const privateKey = process.env.USER_PRIVATE_KEY || "";
3232
const apiKey = process.env.BICONOMY_API_KEY;
33-
const userAddress = "0x0997F9a8647CA45Ab697886143f4353C614e1D7A";
34-
const cuperfluidContractAddress =
35-
"0x921B1DBd4A075E9ad2686E480540F3a07C4A6553";
33+
const userAddress = process.env.USER_ADDRESS;
34+
const cuperfluidContractAddress = process.env.CUPERFLUID_CONTRACT_ADDRESS;
35+
const receiver = process.env.RECEIVER_ADDRESS;
36+
const endpoint = process.env.BACKEND_ENDPOINT || "https://secure-fortress-91179.herokuapp.com/validate";
37+
// constant addresses
38+
const token = "5c03fe67f60a8dcbc5df674f0a8df8f2";
3639
const superfluidContractAddress =
37-
"0xEB796bdb90fFA0f28255275e16936D25d3418603";
40+
"0xEB796bdb90fFA0f28255275e16936D25d3418603";
3841
const cfaContractAddress = "0x49e565Ed1bdc17F3d220f72DF0857C26FA83F873";
3942
const fDAIx = "0x5D8B4C2554aeB7e86F387B4d6c00Ac33499Ed01f";
40-
const receiver = "0xa5a782A2b2BE73421F75774186d4f8f1aAbca2C4";
43+
// constants
4144
const flowRate = 385802469135802; // denotes tokens per sec, equates to 1010 tokens / month
4245
const numberOfCheckpoints = 10;
4346
const checkpointInterval = 60000;
44-
const endpoint = "https://secure-fortress-91179.herokuapp.com/validate";
45-
const token = "5c03fe67f60a8dcbc5df674f0a8df8f2";
46-
4747
// provider and wallet
4848
const provider = new ethers.providers.JsonRpcProvider(
4949
"https://rpc-mumbai.maticvigil.com"

scripts/biconomy-test.js

+6-5
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ const Cuperfluid = require("../artifacts/contracts/Cuperfluid.sol/Cuperfluid.jso
66
async function main() {
77
const privateKey = process.env.PRIVATE_KEY;
88
const apiKey = process.env.BICONOMY_API_KEY;
9-
const cuperfluidContractAddress =
10-
"0xc5610779AC3Ba6Af90aBfd9C345e7f936cA63656";
11-
const userAddress = "0x0997F9a8647CA45Ab697886143f4353C614e1D7A";
9+
const cuperfluidContractAddress = process.env.CUPERFLUID_CONTRACT_ADDRESS;
10+
const userAddress = process.env.USER_ADDRESS;
1211
const fDAIx = "0x5D8B4C2554aeB7e86F387B4d6c00Ac33499Ed01f";
1312
const receiver = "0xdA7773E91a396d592AD33146164dA6d7d2Fda9B6";
1413
const flowRate = 385802469135802;
1514
const numberOfCheckpoints = 10;
1615
const checkpointInterval = 3600;
17-
const endpoint = "https://secure-fortress-91179.herokuapp.com/validate";
16+
const endpoint =
17+
process.env.BACKEND_ENDPOINT ||
18+
"https://secure-fortress-91179.herokuapp.com/validate";
1819
const token = "5c03fe67f60a8dcbc5df674f0a8df8f2";
19-
const address = "0x0997F9a8647CA45Ab697886143f4353C614e1D7A";
20+
const address = process.env.USER_ADDRESS;
2021

2122
const provider = new ethers.providers.JsonRpcProvider(
2223
"https://rpc-mumbai.maticvigil.com"

0 commit comments

Comments
 (0)