Interface
ForwardValue represents a value that's intended to be forwarded to another smart contract method. This object is not meant to be directly constructued, instead one should produce them via the automatically generated forward<method>Args` methods.
See the Forward Values chapter of the advanced guide for more information. export interface ForwardValue {
readonly name: string;
readonly converted: ScriptBuilderParam | undefined;
readonly param: Param | undefined;
readonly [OpaqueTagSymbol]: unique symbol;
}