Files
warp/tools/contract.ts
2022-01-18 19:00:58 +01:00

107 lines
3.1 KiB
TypeScript

/* eslint-disable */
import Arweave from 'arweave';
import {
LoggerFactory,
MemCache,
RedstoneGatewayContractDefinitionLoader,
RedstoneGatewayInteractionsLoader,
SmartWeaveNodeFactory
} from '../src';
import * as fs from 'fs';
import knex from 'knex';
import os from "os";
const logger = LoggerFactory.INST.create('Contract');
LoggerFactory.INST.logLevel('fatal');
LoggerFactory.INST.logLevel('info', 'Contract');
async function main() {
printTestInfo();
const PIANITY_CONTRACT = 'SJ3l7474UHh3Dw6dWVT1bzsJ-8JvOewtGoDdOecWIZo';
const PIANITY_COMMUNITY_CONTRACT = 'n05LTiuWcAYjizXAu-ghegaWjL89anZ6VdvuHcU6dno';
const CACHE_PATH = 'cache.sqlite.db';
const heapUsedBefore = Math.round((process.memoryUsage().heapUsed / 1024 / 1024) * 100) / 100;
const rssUsedBefore = Math.round((process.memoryUsage().rss / 1024 / 1024) * 100) / 100;
const arweave = Arweave.init({
host: 'arweave.net', // Hostname or IP address for a Arweave host
port: 443, // Port
protocol: 'https', // Network protocol http or https
timeout: 60000, // Network request timeouts in milliseconds
logging: false // Enable network request logging
});
if (fs.existsSync(CACHE_PATH)) {
fs.rmSync(CACHE_PATH);
}
const smartweave = (
await SmartWeaveNodeFactory.knexCachedBased(
arweave,
knex({
client: 'sqlite3',
connection: {
filename: CACHE_PATH
},
useNullAsDefault: true
})
)
)
.setInteractionsLoader(
new RedstoneGatewayInteractionsLoader('https://gateway.redstone.finance', { notCorrupted: true })
)
.setDefinitionLoader(
new RedstoneGatewayContractDefinitionLoader('https://gateway.redstone.finance', arweave, new MemCache())
)
.build();
const contract = smartweave.contract(PIANITY_CONTRACT);
await contract.readState();
const contract2 = smartweave.contract(PIANITY_COMMUNITY_CONTRACT);
await contract2.readState();
const heapUsedAfter = Math.round((process.memoryUsage().heapUsed / 1024 / 1024) * 100) / 100;
const rssUsedAfter = Math.round((process.memoryUsage().rss / 1024 / 1024) * 100) / 100;
logger.warn('Heap used in MB', {
usedBefore: heapUsedBefore,
usedAfter: heapUsedAfter
});
logger.warn('RSS used in MB', {
usedBefore: rssUsedBefore,
usedAfter: rssUsedAfter
});
const result = contract.lastReadStateStats();
logger.warn('total evaluation: ', result);
}
function printTestInfo() {
console.log("Test info ");
console.log("===============");
console.log(" ", "OS ", os.type() + " " + os.release() + " " + os.arch());
console.log(" ", "Node.JS ", process.versions.node);
console.log(" ", "V8 ", process.versions.v8);
let cpus = os.cpus().map(function (cpu) {
return cpu.model;
}).reduce(function (o, model) {
if (!o[model]) o[model] = 0;
o[model]++;
return o;
}, {});
cpus = Object.keys(cpus).map(function (key) {
return key + " \u00d7 " + cpus[key];
}).join("\n");
console.log(" ", "CPU ", cpus);
console.log(" ", "Memory ", (os.totalmem() / 1024 / 1024 / 1024).toFixed(0), "GB");
console.log("===============");
}
main().catch((e) => console.error(e));