aptos-upload 0.1.2

CLI for publishing already-compiled Move modules to Aptos.
Documentation
1
2
3
4
5
6
7
8
use anyhow::*;
use aptos_upload::AptosUploadTool;
use clitool::CliTool;

#[tokio::main]
async fn main() -> Result<()> {
    AptosUploadTool::execute_main().await
}