Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.cloud.coinbase.com/llms.txt

Use this file to discover all available pages before exploring further.

type LinkAuthAction = 
  | {
  type: "LINK_AUTH_METHOD";
  payload: {
     method: LinkAuthState["methodToLink"];
  };
}
  | {
  type: "LINK_AUTH_METHOD_ERROR";
  payload: {
     error: LinkAuthState["error"];
  };
}
  | {
  type: "SET_AUTH_METHODS";
  payload: {
     methods: LinkAuthState["authMethods"];
  };
}
  | {
  type: "RESET_STATE";
};
The actions that can be performed on the LinkAuth state.

See