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

Update kairos json-rpc #28

Merged
merged 1 commit into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const config: HardhatUserConfig = {
url: process.env.PROVIDER || 'http://127.0.0.1:8545'
},
baobab: {
url: process.env.PROVIDER || 'https://api.baobab.klaytn.net:8651',
url: process.env.PROVIDER || 'https://public-en.kairos.node.kaia.io',
chainId: 1001,
...commonConfig,
gasPrice: 250_000_000_000
Expand Down
2 changes: 1 addition & 1 deletion scripts/performance-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
const numWords = 1
const value = ethers.utils.parseEther('1.0')

const providerUrl = 'https://api.baobab.klaytn.net:8651'
const providerUrl = 'https://public-en.kairos.node.kaia.io'
const provider = new ethers.providers.JsonRpcProvider(providerUrl)

const signer = new ethers.Wallet(
Expand Down Expand Up @@ -76,6 +76,6 @@
console.error(error)
process.exitCode = 1
})
function delay(arg0: number) {

Check warning on line 79 in scripts/performance-test.ts

View workflow job for this annotation

GitHub Actions / build

'delay' is defined but never used

Check warning on line 79 in scripts/performance-test.ts

View workflow job for this annotation

GitHub Actions / build

'arg0' is defined but never used
throw new Error('Function not implemented.')
}
Loading