mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-13 05:01:00 +00:00
@@ -40,7 +40,7 @@ pub static EXTENSION_LLVM_SOURCE: &str = "ll";
|
|||||||
pub static EXTENSION_LLVM_BINARY: &str = "bc";
|
pub static EXTENSION_LLVM_BINARY: &str = "bc";
|
||||||
|
|
||||||
/// The PolkaVM assembly file extension.
|
/// The PolkaVM assembly file extension.
|
||||||
pub static EXTENSION_POLKAVM_ASSEMBLY: &str = "zasm";
|
pub static EXTENSION_POLKAVM_ASSEMBLY: &str = "pvmasm";
|
||||||
|
|
||||||
/// The PolkaVM bytecode file extension.
|
/// The PolkaVM bytecode file extension.
|
||||||
pub static EXTENSION_POLKAVM_BINARY: &str = "zbin";
|
pub static EXTENSION_POLKAVM_BINARY: &str = "pvm";
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
|
|
||||||
const outputDir = 'artifacts';
|
const outputDir = 'artifacts';
|
||||||
const binExtension = ':C.zbin';
|
const binExtension = ':C.pvm';
|
||||||
const asmExtension = ':C.zasm';
|
const asmExtension = ':C.pvmasm';
|
||||||
const contractSolFilename = 'contract.sol';
|
const contractSolFilename = 'contract.sol';
|
||||||
const contractYulFilename = 'contract.yul';
|
const contractYulFilename = 'contract.yul';
|
||||||
const pathToOutputDir = path.join(__dirname, '..', outputDir);
|
const pathToOutputDir = path.join(__dirname, '..', outputDir);
|
||||||
|
|||||||
Reference in New Issue
Block a user