diff --git a/deploys/sepolia.json b/deploys/sepolia.json new file mode 100644 index 0000000..3a3af1d --- /dev/null +++ b/deploys/sepolia.json @@ -0,0 +1,8 @@ +{ + "signers": [ + "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266", + "0x70997970C51812dc3A010C7d01b50e0d17dc79C8" + ], + "p2pix": "0xb7cD135F5eFD9760981e02E2a898790b688939fe", + "token": "0x3eBE67A2C7bdB2081CBd34ba3281E90377462289" +} \ No newline at end of file diff --git a/hardhat.config.ts b/hardhat.config.ts index de2fbc0..f981ddd 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -56,8 +56,11 @@ function getChainConfig( jsonRpcUrl = "https://public-node.testnet.rsk.co/"; break; case "rootstock": - jsonRpcUrl = "https://public-node.rsk.co/" + jsonRpcUrl = "https://public-node.rsk.co/"; break; + case "sepolia": + jsonRpcUrl = "https://rpc.sepolia.online"; + break default: jsonRpcUrl = "https://" + chain + ".infura.io/v3/" + infuraApiKey;