github.com/intfoundation/intchain@v0.0.0-20220727031208-4316ad31ca73/accounts/keystore/keystore1.go (about)

     1  package keystore
     2  
     3  import (
     4  	"github.com/intfoundation/intchain/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  }