Egor Toybich
Egor Toybich
@altranapina i'm not sure what needs to be done to run it on Linux, the main concern is the use of .NET libraries for several key functions (since ironpython is...
solved it by getting `seqno` through `provider.api().runMethod(address, 'seqno')` and waiting until it changes, nevertheless, it would be nice to have a more straightforward approach
@tuminzee i can't, but it's enough for my purposes: to run some txs on the contracts i deployed and await their completion and since im the only one interacting with...
Might as well post these here: ```typescript export async function getSeqNo(provider: NetworkProvider, address: Address) { if (await provider.isContractDeployed(address)) { let res = await provider.api().runMethod((await provider.api().getLastBlock()).last.seqno, address, 'seqno'); return res.reader.readNumber(); }...