Skip to content

Commit

Permalink
docs: updates README
Browse files Browse the repository at this point in the history
  • Loading branch information
gurukishore111 committed Mar 20, 2024
1 parent 80f4246 commit a16a903
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@ In this method, you will use an ETH private key and an RPC URL to execute a Cros
privateKey, // Your ETH private key.
'usdt', // Enter the coin symbol.
1, // Enter the amount you want to deposit.
'SCROLL' // Enter the network you want to deposit.
'SCROLL' // Enter the network you want to deposit into.
// This argument is optional; if you pass the argument, the gasLimit and gasPrice will be overridden while executing the transaction.
{
gasLimit: '',
Expand Down Expand Up @@ -549,7 +549,7 @@ const depositPolygonRes = await client.depositFromPolygonNetworkWithSigner(
provider, // The provider created above.
'usdc', // Enter the coin symbol.
0.00001, // Enter the amount you want to deposit.
'SCROLL' // Enter the network you want to deposit.
'SCROLL' // Enter the network you want to deposit into.
// This argument is optional; if you pass the argument, the gasLimit and gasPrice will be overridden while executing the transaction.
{
gasLimit: '',
Expand Down Expand Up @@ -637,6 +637,6 @@ const fastWithdrawalRes = await client.fastWithdrawal(
keyPair, // The keyPair created above
0.0001, // Enter the amount you want to deposit
'usdc', // Enter the coin symbol
'POLYGON', // Enter the network you want to withdraw.
'POLYGON', // Enter the network you want to withdraw from.
)
```

0 comments on commit a16a903

Please sign in to comment.