@safe-global/safe-react-hooks
Version:
A collection of React Hooks that facilitates the interaction of React apps with Safe Smart Accounts
23 lines (22 loc) • 713 B
TypeScript
export declare enum QueryKey {
PendingTransactions = "pendingTransactions",
Transactions = "transactions",
Address = "address",
Nonce = "nonce",
Threshold = "threshold",
IsDeployed = "isDeployed",
Owners = "owners",
SafeInfo = "safeInfo",
SafeOperations = "safeOperations",
PendingSafeOperations = "pendingSafeOperations"
}
export declare enum MutationKey {
SendTransaction = "sendTransaction",
ConfirmTransaction = "confirmTransaction",
UpdateThreshold = "updateThreshold",
SwapOwner = "swapOwner",
AddOwner = "addOwner",
RemoveOwner = "removeOwner",
SendSafeOperation = "sendSafeOperation",
ConfirmSafeOperation = "confirmSafeOperation"
}