source property

  1. @TagNumber.new(4)
Int64 get source

Transaction source, see https://github.com/bnb-chain/BEPs/blob/master/BEP10.md Some important values: 0: Default source value (e.g. for Binance Chain Command Line, or SDKs) 1: Binance DEX Web Wallet 2: Trust Wallet

Implementation

@$pb.TagNumber(4)
$fixnum.Int64 get source => $_getI64(3);
  1. @TagNumber.new(4)
set source (Int64 v)

Implementation

@$pb.TagNumber(4)
set source($fixnum.Int64 v) {
  $_setInt64(3, v);
}