Skip to content

Commit 6f8c5d3

Browse files
committed
fix typos in code snippet
1 parent b6f8bde commit 6f8c5d3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ holders = ankr_w3.token.get_token_holders(
134134
Get token holders count daily history.
135135

136136
````python3
137-
daily_holders_history = ankr_w3.token..get_token_holders_count_history(
137+
daily_holders_history = ankr_w3.token.get_token_holders_count_history(
138138
blockchain="bsc",
139139
contract_address="0xf307910A4c7bbc79691fD374889b36d8531B08e3",
140140
limit=10, # last 10 days history
@@ -146,7 +146,7 @@ daily_holders_history = ankr_w3.token..get_token_holders_count_history(
146146
Get token holders count at the latest block.
147147

148148
````python3
149-
holders_count = ankr_w3.token..get_token_holders_count(
149+
holders_count = ankr_w3.token.get_token_holders_count(
150150
blockchain="bsc",
151151
contract_address="0xf307910A4c7bbc79691fD374889b36d8531B08e3",
152152
)
@@ -157,7 +157,7 @@ holders_count = ankr_w3.token..get_token_holders_count(
157157
Get account assets.
158158

159159
````python3
160-
assets = ankr_w3.token..get_account_balance(
160+
assets = ankr_w3.token.get_account_balance(
161161
wallet_address="0x77A859A53D4de24bBC0CC80dD93Fbe391Df45527",
162162
blockchain=["eth", "bsc"],
163163
)

0 commit comments

Comments
 (0)