github.com/neatlab/neatio@v1.7.3-0.20220425043230-d903e92fcc75/chain/accounts/keystore/keystore1.go (about)

     1  package keystore
     2  
     3  import (
     4  	"github.com/neatlab/neatio/utilities/common"
     5  )
     6  
     7  func KeyFileName(keyAddr common.Address) string {
     8  	return keyFileName(keyAddr)
     9  }
    10  
    11  func WriteKeyStore(filepath string, keyjson []byte) error {
    12  	return writeKeyFile(filepath, keyjson)
    13  }