subgraph 0.2.0

Write Subgraphs for The Graph protocol in Rust 🦀
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Miscellaneous FFI type definitions.

use super::buf::AscTypedArray;

/// Alias for a `Uint8Array` type.
pub type AscUint8Array = AscTypedArray<u8>;

/// Alias for a `ByteArray` type.
pub type AscByteArray = AscUint8Array;

/// Alias for a `Bytes` type.
pub type AscBytes = AscByteArray;

/// Alias for an `Address` type.
pub type AscAddress = AscBytes;