BatiGencho
BatiGencho
I am using seed-rs for a simple SPA, but now need to interact with another wasm file which could be either a simple lib with a function or a more...
I have a tokio thread which has a loop inside making rpc calls to e.g. get node status using the massa-sdk/client, the public sub-client: ``` tokio::spawn(async move { loop {...
Some smart contracts have read-only view functions like: ``` export function getSomeData(address: string): string { const data = Storage.get("KEY"); generateEvent(data); return data; } ``` which currently require us to generate...
Smart contracts might often have code like this: ``` export function getSomeData(address: string): string { const data = Storage.get("KEY"); generateEvent(data); return data; } ``` If this read-only method is being...
For our web3-js we need to run in the pipeline a test suite that deploys a sc to the testnet and does manipulations on it. Since the deployer address now...