mirror of
https://github.com/onsonr/sonr.git
synced 2025-03-10 21:09:11 +00:00
38 lines
772 B
Go
38 lines
772 B
Go
|
package env
|
||
|
|
||
|
import (
|
||
|
"github.com/ipfs/kubo/client/rpc"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
ChainID = "testnet"
|
||
|
ValAddr = "val1"
|
||
|
NodeDir = ".sonr"
|
||
|
)
|
||
|
|
||
|
// Initialize initializes the local configuration values
|
||
|
func init() {
|
||
|
}
|
||
|
|
||
|
// SetLocalContextSessionID sets the session ID for the local context
|
||
|
func SetLocalValidatorAddress(address string) {
|
||
|
ValAddr = address
|
||
|
}
|
||
|
|
||
|
// SetLocalContextChainID sets the chain ID for the local
|
||
|
func SetLocalChainID(id string) {
|
||
|
ChainID = id
|
||
|
}
|
||
|
|
||
|
// IPFSClient is an interface for interacting with an IPFS node.
|
||
|
type IPFSClient = *rpc.HttpApi
|
||
|
|
||
|
// NewLocalClient creates a new IPFS client that connects to the local IPFS node.
|
||
|
func GetIPFSClient() (IPFSClient, error) {
|
||
|
rpcClient, err := rpc.NewLocalApi()
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return rpcClient, nil
|
||
|
}
|