Abstract
Abstract
compileAbstract
compileCompile contract by contract's source code
Contract source code as string
Optional
fileSystem: Record<string, string>A map of contract filename to the corresponding contract source code to include into the main contract
ACI and bytecode
{
'library.aes': 'namespace TestLib =\n function sum(x: int, y: int) : int = x + y'
}
Abstract
generateAbstract
generateGenerate contract's ACI by contract's source code
Contract source code as string
Optional
fileSystem: Record<string, string>A map of contract filename to the corresponding contract source code to include into the main contract
ACI
{
'library.aes': 'namespace TestLib =\n function sum(x: int, y: int) : int = x + y'
}
Abstract
validateAbstract
validateVerify that a contract bytecode is the result of compiling the given source code
Contract bytecode to verify
Contract source code as string
Optional
fileSystem: Record<string, string>A map of contract filename to the corresponding contract source code to include into the main contract
{
'library.aes': 'namespace TestLib =\n function sum(x: int, y: int) : int = x + y'
}
Abstract
versionGenerated using TypeDoc
A base class for all compiler implementations