Skip to content

Commit

Permalink
transaction-builder-generator -> aptos-sdk-builder
Browse files Browse the repository at this point in the history
  • Loading branch information
davidiw committed Jul 23, 2022
1 parent 84c0dde commit 4e86f60
Show file tree
Hide file tree
Showing 17 changed files with 34 additions and 2,135 deletions.
42 changes: 21 additions & 21 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"aptos-move/af-cli",
"aptos-move/aptos-module-verifier",
"aptos-move/aptos-resource-viewer",
"aptos-move/aptos-sdk-builder",
"aptos-move/aptos-transaction-benchmarks",
"aptos-move/aptos-validator-interface",
"aptos-move/aptos-vm",
Expand All @@ -19,7 +20,6 @@ members = [
"aptos-move/move-examples",
"aptos-move/mvhashmap",
"aptos-move/parallel-executor",
"aptos-move/transaction-builder-generator",
"aptos-move/transaction-replay",
"aptos-move/vm-genesis",
"aptos-move/writeset-transaction-generator",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "transaction-builder-generator"
name = "aptos-sdk-builder"
version = "0.1.0"
authors = ["Aptos Labs <[email protected]>"]
description = "Aptos transaction-builder"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
---
id: transaction-builder-generator
title: Transaction Builder Generator
custom_edit_url: https://github.com/aptos-labs/aptos-core/edit/main/language/transaction-builder-generator/README.md
id: aptos-sdk-builder
title: Aptos SDK Builder
custom_edit_url: https://github.com/aptos-labs/aptos-core/edit/main/language/aptos-sdk-builder/README.md
---

# Transaction Builder Generator
# Aptos SDK Builder

A *transaction builder* is a helper function that converts its arguments into the payload of an Aptos transaction calling a particular Move script.

Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ where
r#"// Conversion library between a structured representation of a Move script call (`ScriptCall`) and the
// standard BCS-compatible representation used in Aptos transactions (`Script`).
//
// This code was generated by compiling known Script interfaces ("ABIs") with the tool `transaction-builder-generator`.
// This code was generated by compiling known Script interfaces ("ABIs") with the tool `aptos-sdk-builder`.
"#
)
}
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use serde_generate::SourceInstaller as _;
use serde_reflection::Registry;
use std::{io::Write, process::Command};
use tempfile::tempdir;
use transaction_builder_generator as buildgen;
use aptos_sdk_builder as buildgen;

fn get_aptos_registry() -> Registry {
let path = "../../testsuite/generate-format/tests/staged/aptos.yaml";
Expand Down
3 changes: 1 addition & 2 deletions aptos-move/framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ structopt = "0.3.21"
tempfile = "3.3.0"

aptos-crypto = { path = "../../crates/aptos-crypto" }
aptos-sdk-builder = { path = "../aptos-sdk-builder" }
aptos-types = { path = "../../types" }

move-deps = { path = "../move-deps", features = ["address32"] }
transaction-builder-generator = { path = "../transaction-builder-generator" }

[dev-dependencies]
aptos-vm = { path = "../../aptos-move/aptos-vm" }
Expand Down
Loading

0 comments on commit 4e86f60

Please sign in to comment.