Skip to content

Commit

Permalink
Update v0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
george012 committed May 14, 2024
1 parent 76554b6 commit 2fee038
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ package config

const (
ProjectName = "blockchain_box"
ProjectVersion = "v0.0.15"
ProjectVersion = "v0.0.16"
ProjectDescription = "[blockchain] box"
)
14 changes: 14 additions & 0 deletions wallet/wallet.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package wallet

import "github.com/george012/blockchain_box/coin_flags"

type Wallet struct {
Coin coin_flags.CoinFlag // 币种标识
CoinName string // 币种名称
WalletAddress string // 钱包地址
AliasAddress string // 别名地址,针对有多重转换的地址适配预留字段
AliasAddressAppendZeroX string // 别名地址,针对有多重转换的地址适配预留字段 补充0x开头
PublicKey string // 公钥
PrivateKey string // 私钥
Mnemonic string // 助记词
}

0 comments on commit 2fee038

Please sign in to comment.