Enumeration.KeybanChain
The KeybanChain
enumeration defines the various blockchain networks supported by the Keyban SDK.
Each member of the enumeration represents a specific blockchain network identified by its unique name.
Remarks
Use this enumeration to specify the blockchain network you wish to interact with when utilizing the different functionalities of the Keyban SDK, such as account management, transactions, and NFTs.
Example
import { KeybanClient, KeybanChain } from '@keyban/sdk';
const client = new KeybanClient({
apiUrl: "https://api.keyban.io",
appId: "your-app-id",
chain: KeybanChain.EthereumAnvil,
});