UNPKG
namillum
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.1
1.0.0
Bubble Protocol SDK
github.com/ValentinaKohler/namillum
ValentinaKohler/namillum
namillum
/
examples
/
zilliqa-js
/
latest-block
/
src
/
index.ts
9 lines
(7 loc)
•
238 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Zilliqa
}
from
"@zilliqa-js/zilliqa"
;
async
function
main
(
) {
const
provider =
new
Zilliqa
(
"https://api.zilliqa.com/"
);
const
latestBlock =
await
provider.
blockchain
.
getLatestTxBlock
();
console
.
log
(latestBlock); }
main
();