Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

nits for get-signature-endpoint #502

Merged
merged 9 commits into from
Feb 9, 2023
Prev Previous commit
Next Next commit
parseInt from ENV var (#491)
  • Loading branch information
ceyonur authored Feb 6, 2023
commit c667f95add504871ab88c8a832d77f6ad448eee6
2 changes: 1 addition & 1 deletion contract-examples/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "./tasks.ts"
// HardHat users must populate these environment variables in order to connect to their subnet-evm instance
// Since the blockchainID is not known in advance, there's no good default to use and we use the C-Chain here.
var local_rpc_uri = process.env.RPC_URI || "http://127.0.0.1:9650/ext/bc/C/rpc"
var local_chain_id = process.env.CHAIN_ID || 99999
var local_chain_id = parseInt(process.env.CHAIN_ID,10) || 99999

export default {
solidity: {
Expand Down