This method is used to add a custom chain to Auro Wallet.
if you want to switch by URL , you can use this method . if URL is added to wallet , will call switch_chain auto.
Params
typeAddChainArgs= {// the GraphQL URL that need add.readonly url:string// custom name.readonly name:string}
Result
typeChainInfoArgs={// current networkID, now will return mina:mainnet, mina:testnet, mina:berkeley networkID:string,}interfaceProviderErrorextendsError { message:string; // error message. code:number; // error code. data?:unknown; // error body. }Promise<ChainInfoArgs | ProviderError>
** Please update as soon as possible. **`ChainInfoArgs` params have updated from App 2.0.2 & extension 2.2.17.Only `networkID` is returned, no longer supports returning `chainId` and `name`. // @deprecated from App 2.0.2 & extension 2.2.17.type ChainInfoArgs ={ chainId:string, name:string}