@tokamak-zk-evm/synthesizer
Version:
Tokamak zk-EVM Synthesizer - Processes Ethereum transactions into wire maps for Tokamak zk-SNARK proof generation
26 lines (25 loc) • 989 B
text/typescript
// @ts-nocheck
import SUPPORTED_TOKENS from "./addresses/ERC20_ADDRESSES.json"
import TON_STORAGE_LAYOUT from "./storage-layouts/TON.json"
import USDT_STORAGE_LAYOUT from "./storage-layouts/USDT.json"
import USDC_PROXY_STORAGE_LAYOUT from "./storage-layouts/USDC_PROXY.json"
import USDC_STORAGE_LAYOUT_V1 from "./storage-layouts/USDC_IMP.json"
import USDC_STORAGE_LAYOUT_V2 from "./storage-layouts/USDC_IMP_2.json"
import TON_CONTRACT from "./bytecodes/TON.json"
import USDT_CONTRACT from "./bytecodes/USDT.json"
import USDC_PROXY_CONTRACT from "./bytecodes/USDC_PROXY.json"
import USDC_IMPLEMENTATION_V1 from "./bytecodes/USDC_IMP.json"
import USDC_IMPLEMENTATION_V2 from "./bytecodes/USDC_IMP_2.json"
export {
SUPPORTED_TOKENS,
TON_STORAGE_LAYOUT,
USDT_STORAGE_LAYOUT,
USDC_PROXY_STORAGE_LAYOUT,
USDC_STORAGE_LAYOUT_V1,
USDC_STORAGE_LAYOUT_V2,
TON_CONTRACT,
USDT_CONTRACT,
USDC_PROXY_CONTRACT,
USDC_IMPLEMENTATION_V1,
USDC_IMPLEMENTATION_V2
}