28 lines
454 B
Go
28 lines
454 B
Go
|
package models
|
||
|
|
||
|
import (
|
||
|
"github.com/filecoin-project/go-address"
|
||
|
"github.com/filecoin-project/go-state-types/abi"
|
||
|
"github.com/filecoin-project/go-state-types/crypto"
|
||
|
)
|
||
|
|
||
|
type FilecoinMsg struct {
|
||
|
Version uint64
|
||
|
|
||
|
To address.Address
|
||
|
From address.Address
|
||
|
|
||
|
Nonce uint64
|
||
|
|
||
|
Value abi.TokenAmount
|
||
|
|
||
|
GasLimit int64
|
||
|
GasFeeCap abi.TokenAmount
|
||
|
GasPremium abi.TokenAmount
|
||
|
|
||
|
Method abi.MethodNum
|
||
|
Params []byte
|
||
|
}
|
||
|
|
||
|
type FilMsgSignature *crypto.Signature
|