Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
public iterStorage(address: AddressString): AsyncIterable {
return AsyncIterableX.from(this.mutableClient.getAllStorage(address).then((res) => AsyncIterableX.from(res))).pipe(
// tslint:disable-next-line no-any
flatten() as any,
map((storageItem) => this.convertStorageItem(storageItem)),
);
}
public iterStorage(address: AddressString): AsyncIterable {
return AsyncIterableX.from(this.mutableClient.getAllStorage(address).then((res) => AsyncIterableX.from(res))).pipe(
// tslint:disable-next-line no-any
flatten() as any,
map((storageItem) => this.convertStorageItem(storageItem)),
);
}
public iterStorage(address: AddressString): AsyncIterable {
return AsyncIterableX.from(this.mutableClient.getAllStorage(address).then((res) => AsyncIterableX.from(res))).pipe(
// tslint:disable-next-line no-any
flatten() as any,
map((storageItem) => this.convertStorageItem(storageItem)),
);
}
public concat(
other: StackItemEnumerator,
): StackItemEnumerator {
const iterable = concat(
AsyncIterableX.from(this.enumerator as AsyncIterableIterator),
AsyncIterableX.from(other.enumerator as AsyncIterableIterator),
);
return new StackItemEnumerator(iterable[Symbol.asyncIterator]());
}
}
public iterBlocks(options: IterOptions = {}): AsyncIterable {
return AsyncIterableX.from(this.getProvider()).pipe(flatMap((provider) => provider.iterBlocks(options)));
}
public concat(
other: StackItemEnumerator,
): StackItemEnumerator {
const iterable = concat(
AsyncIterableX.from(this.enumerator as AsyncIterableIterator),
AsyncIterableX.from(other.enumerator as AsyncIterableIterator),
);
return new StackItemEnumerator(iterable[Symbol.asyncIterator]());
}
}
const iterActionsRaw = ({
network = client.getCurrentNetwork(),
...iterOptions
}: SmartContractIterOptions = {}): AsyncIterable =>
AsyncIterableX.from(client.__iterActionsRaw(network, iterOptions)).pipe(
filter((action) => action.address === definition.networks[network].address),
);
const iterEvents = (actionFilter?: BlockFilter): AsyncIterable =>
AsyncIterableX.from(iterActions(actionFilter)).pipe(
map((action) => {
if (action.type === 'Log') {
return undefined;
}
return action;
}),
filter(Boolean),
);
const iterActions = (options?: SmartContractIterOptions): AsyncIterable =>
AsyncIterableX.from(iterActionsRaw(options)).pipe(
map(convertAction),
filter(utils.notNull),
);
invoke: async ({ context, args }) => {
const hash = vmUtils.toStorageContext({ context, value: args[0] }).value;
await checkStorage({ context, hash });
const prefix = args[1].asBuffer();
const iterable = AsyncIterableX.from(context.blockchain.storageItem.getAll$({ hash, prefix })).pipe<{
key: BufferStackItem;
value: BufferStackItem;
}>(
asyncMap(({ key, value }) => ({
key: new BufferStackItem(key),
value: new BufferStackItem(value),
})),
);
return {
context,
results: [new IteratorStackItem(new StackItemIterator(iterable[Symbol.asyncIterator]()))],
};
},
}),