You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
package common
import ( "math/big"
ethCommon "github.com/ethereum/go-ethereum/common" )
// WIP this will be from hermeznetwork/common
type Tx struct { FromAx [32]byte FromAy [32]byte FromEthAddr ethCommon.Address ToAx [32]byte ToAy [32]byte ToEthAddr ethCommon.Address OnChain bool RqOffset []byte NewAccount bool TokenID uint32 LoadAmount [3]byte Amount [3]byte Nonce uint64 UserFee uint8 UserFeeAbsolute uint64 R8x [32]byte R8y [32]byte S [32]byte RqTxData [32]byte }
// WIP this will be from hermeznetwork/common
type Account struct { EthAddr ethCommon.Address TokenID uint32 Idx uint32 Nonce uint64 Balance *big.Int // Ax, Ay
}
|