mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
nikugogoi
198e49e5a0
* Test case for wasm out of memory error * Restart wasm instance after N blocks * Handle out of memory error and re instantiate WASM * Remove old instance from map before reinstantiating WASM
87 lines
1.5 KiB
TypeScript
87 lines
1.5 KiB
TypeScript
import {
|
|
// ethereum,
|
|
// store,
|
|
log
|
|
// ipfs,
|
|
// json,
|
|
// crypto,
|
|
|
|
// dataSource,
|
|
// ens,
|
|
|
|
// typeConversion,
|
|
|
|
// bigDecimal,
|
|
// bigInt,
|
|
|
|
// Address,
|
|
// BigDecimal,
|
|
// BigInt,
|
|
// ByteArray,
|
|
// Bytes,
|
|
// DataSourceContext,
|
|
// DataSourceTemplate,
|
|
// Entity,
|
|
// JSONValue,
|
|
// JSONValueKind,
|
|
// JSONValuePayload,
|
|
// Result,
|
|
// TypedMap,
|
|
// TypedMapEntry,
|
|
// Value,
|
|
// ValueKind,
|
|
// ValuePayload,
|
|
// Wrapped
|
|
} from '@graphprotocol/graph-ts';
|
|
|
|
/* eslint-disable @typescript-eslint/no-namespace */
|
|
export declare namespace test {
|
|
export function asyncMethod(): i32;
|
|
}
|
|
|
|
export function callGraphAPI (): void {
|
|
log.debug('hello {}', ['world']);
|
|
}
|
|
|
|
export function callAsyncMethod (): void {
|
|
log.debug('calling async method', []);
|
|
const res = test.asyncMethod();
|
|
log.debug('res after async: {}', [res.toString()]);
|
|
}
|
|
|
|
export class Foo {
|
|
static getFoo (): Foo {
|
|
return new Foo();
|
|
}
|
|
|
|
getString (): string {
|
|
return 'hello world!';
|
|
}
|
|
}
|
|
|
|
export const FooID = idof<Foo>();
|
|
|
|
export class Bar {
|
|
prop: string
|
|
|
|
constructor (prop: string) {
|
|
this.prop = prop;
|
|
}
|
|
|
|
getProp (): string {
|
|
return this.prop;
|
|
}
|
|
}
|
|
|
|
export function testLog (): void {
|
|
log.debug('Debug message: {}, {}', ['value1', 'value2']);
|
|
log.info('Info message: {}', ['value1', 'value2']);
|
|
log.warning('Warning message', []);
|
|
log.error('Error message', []);
|
|
log.critical('Critical message', []);
|
|
}
|
|
|
|
export function testMemory (value: string): void {
|
|
log.debug('testMemory value:', [value.slice(0, 10)]);
|
|
}
|