Retrieves raw code and ABI for a contract based on account name
OK
base64 encoded wasm
base64 encoded ABI
const response = await fetch('https://eos.nownodes.io/v1/chain/get_raw_code_and_abi', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{ "wasm": "text", "abi": "text" }