@indexing/jiti 0.1.11 → 0.1.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +0 -175
- package/dist/main.js.map +1 -1
- package/dist/module.js +0 -175
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +2 -25
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -2018,27 +2018,6 @@ export interface UtxoBlock {
|
|
|
2018
2018
|
valuePools?: UtxoBlockValuepools[];
|
|
2019
2019
|
trees?: UtxoBlockTrees;
|
|
2020
2020
|
}
|
|
2021
|
-
export type HubEventMessage = {
|
|
2022
|
-
data: {
|
|
2023
|
-
type: 'MESSAGE_TYPE_NONE' | 'MESSAGE_TYPE_CAST_ADD' | 'MESSAGE_TYPE_CAST_REMOVE' | 'MESSAGE_TYPE_REACTION_ADD' | 'MESSAGE_TYPE_REACTION_REMOVE' | 'MESSAGE_TYPE_LINK_ADD' | 'MESSAGE_TYPE_LINK_REMOVE' | 'MESSAGE_TYPE_VERIFICATION_ADD_ETH_ADDRESS' | 'MESSAGE_TYPE_VERIFICATION_REMOVE' | 'MESSAGE_TYPE_USER_DATA_ADD' | 'MESSAGE_TYPE_USERNAME_PROOF';
|
|
2024
|
-
fid: number | string;
|
|
2025
|
-
timestamp: number;
|
|
2026
|
-
network: string;
|
|
2027
|
-
body: Record<string, unknown> | string;
|
|
2028
|
-
cast_add_body?: {
|
|
2029
|
-
embeds?: {
|
|
2030
|
-
url?: string;
|
|
2031
|
-
embed?: string;
|
|
2032
|
-
}[];
|
|
2033
|
-
};
|
|
2034
|
-
};
|
|
2035
|
-
hash: string;
|
|
2036
|
-
hash_scheme: string;
|
|
2037
|
-
signature: string;
|
|
2038
|
-
signature_scheme: string;
|
|
2039
|
-
signer: string;
|
|
2040
|
-
data_bytes: string;
|
|
2041
|
-
};
|
|
2042
2021
|
export type Template = {
|
|
2043
2022
|
key: string;
|
|
2044
2023
|
name: string;
|
|
@@ -2070,8 +2049,8 @@ export type SubTemplate = {
|
|
|
2070
2049
|
transform: Template['transform'];
|
|
2071
2050
|
tests: Template['tests'];
|
|
2072
2051
|
};
|
|
2073
|
-
export type VMType = 'APTOS' | 'CARDANO' | 'COSMOS' | 'EVM' | 'FILECOIN' | 'HYPERCORE' | 'RIPPLE' | '
|
|
2074
|
-
export type NetworkType = 'APTOS' | 'APTOS_TESTNET' | 'ASTAR' | 'BITCOIN' | 'BITCOIN_TESTNET' | 'BITTENSOR' | 'CARDANO' | '
|
|
2052
|
+
export type VMType = 'APTOS' | 'CARDANO' | 'COSMOS' | 'EVM' | 'FILECOIN' | 'HYPERCORE' | 'RIPPLE' | 'STARKNET' | 'STELLAR' | 'SUBSTRATE' | 'SUI' | 'SVM' | 'TON' | 'UTXO';
|
|
2053
|
+
export type NetworkType = 'APTOS' | 'APTOS_TESTNET' | 'ASTAR' | 'BITCOIN' | 'BITCOIN_TESTNET' | 'BITTENSOR' | 'CARDANO' | 'DOGECOIN' | 'ECLIPSE' | 'ENJIN' | 'FILECOIN' | 'HYPERCORE' | 'KUSAMA' | 'LITECOIN' | 'MOVEMENT_BARDOCK' | 'POLKADOT' | 'RIPPLE' | 'SOLANA' | 'SOLANA_DEVNET' | 'STARKNET' | 'STELLAR' | 'SUI' | 'TON' | 'ZCASH';
|
|
2075
2054
|
export type NetworkTransfer = {
|
|
2076
2055
|
amount: number | bigint;
|
|
2077
2056
|
blockNumber: number;
|
|
@@ -2125,8 +2104,6 @@ export const utils: {
|
|
|
2125
2104
|
};
|
|
2126
2105
|
evmMethodSignatureToHex(sig: string): string;
|
|
2127
2106
|
normalizeEVMBlock(rawBlock: Record<string, unknown>): Record<string, unknown>;
|
|
2128
|
-
snapchainTimestampFromMsg(msg: Record<string, unknown>): Date;
|
|
2129
|
-
snapchainParseEvent(evt: HubEventMessage): Record<string, unknown>;
|
|
2130
2107
|
};
|
|
2131
2108
|
export const templates: {
|
|
2132
2109
|
filterValues: import("types").Template;
|