This message was deleted.
# typescript
s
This message was deleted.
l
From looking at the bridged provider, it looks like the network id really is a number. The simplest way to cast it is
network.id.apply((idstring) => +idstring)
.
p
@little-cartoon-10569 Thanks. Already implemented similar solution
network.id.apply(Number.parseFloat)
👍 1