create static method
Creates a builder with sc.wasm auto-loaded from the package bundle.
Implementation
static Future<ScTransactionBuilder> create() async {
final wasmBytes = await _loadPackageWasm();
return ScTransactionBuilder(wasmBridge: ScWasmRunBridge(wasmBytes));
}