# Configuring with Truffle

Run saga chainlet get test to get the information about the test chainlet.

➜ saga chainlet get test                      
2022-09-22T21:21:27-07:00 INF environment variable AWS_PROFILE is set to default


chainlet information

chainlet name: test
creation date: 22 Sep 22 21:13 PDT
status: Running
endpoint: a81133aab3b9d4ca6981dfec73a032c7-1409eddb4a91d5ba.elb.us-west-1.amazonaws.com
ports: 26657,9090,1317,8545,8546


evm information

network name: test Saga Chainlet
new rpc url: http://a81133aab3b9d4ca6981dfec73a032c7-1409eddb4a91d5ba.elb.us-west-1.amazonaws.com:8545
chain id: 1663906420
currency symbol: SAGA

In truffle-config.js:

networks: {
  saga-test: {
    host: "http://a81133aab3b9d4ca6981dfec73a032c7-1409eddb4a91d5ba.elb.us-west-1.amazonaws.com",
    port: 8545,
    network_id: "1663906420",
    websockets: true
  }
}

For more information, you can visit the official Truffle docs (opens new window).