├── .env.example ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE │ ├── nextra-feedback.yml │ └── resource-hub-submission.yml ├── PULL_REQUEST_TEMPLATE.md ├── scripts │ ├── checkLinksFormat.ts │ ├── generateApiReference.ts │ ├── generateCodeExamples.ts │ ├── generateSupportedNetworks.ts │ ├── getResourcesOg.js │ ├── prepare_production_deployment.sh │ ├── s3_upload.sh │ └── validateResources.js ├── styles │ ├── Microsoft │ │ ├── AMPM.yml │ │ ├── Accessibility.yml │ │ ├── Acronyms.yml │ │ ├── Adverbs.yml │ │ ├── Auto.yml │ │ ├── Avoid.yml │ │ ├── ComplexWords.yml │ │ ├── Contractions.yml │ │ ├── Dashes.yml │ │ ├── DateFormat.yml │ │ ├── DateNumbers.yml │ │ ├── DateOrder.yml │ │ ├── Ellipses.yml │ │ ├── FirstPerson.yml │ │ ├── Foreign.yml │ │ ├── Gender.yml │ │ ├── GenderBias.yml │ │ ├── GeneralURL.yml │ │ ├── HeadingAcronyms.yml │ │ ├── HeadingColons.yml │ │ ├── HeadingPunctuation.yml │ │ ├── Headings.yml │ │ ├── Hyphens.yml │ │ ├── Negative.yml │ │ ├── Ordinal.yml │ │ ├── OxfordComma.yml │ │ ├── Passive.yml │ │ ├── Percentages.yml │ │ ├── Quotes.yml │ │ ├── RangeFormat.yml │ │ ├── RangeTime.yml │ │ ├── Ranges.yml │ │ ├── Semicolon.yml │ │ ├── SentenceLength.yml │ │ ├── Spacing.yml │ │ ├── Suspended.yml │ │ ├── Terms.yml │ │ ├── URLFormat.yml │ │ ├── Units.yml │ │ ├── Vocab.yml │ │ ├── We.yml │ │ ├── Wordiness.yml │ │ └── meta.json │ ├── config │ │ └── vocabularies │ │ │ └── default │ │ │ ├── accept.txt │ │ │ └── reject.txt │ └── write-good │ │ ├── Cliches.yml │ │ ├── E-Prime.yml │ │ ├── Illusions.yml │ │ ├── Passive.yml │ │ ├── README.md │ │ ├── So.yml │ │ ├── ThereIs.yml │ │ ├── TooWordy.yml │ │ ├── Weasel.yml │ │ └── meta.json └── workflows │ ├── deploy-release.yml │ ├── deploy.yml │ ├── generate-supported-networks.yml │ ├── link-check.yml │ ├── report-readability.yml │ ├── style-check.yml │ └── weekly-link-check.yml ├── .gitignore ├── .husky └── pre-push ├── .prettierrc ├── .vale.ini ├── .vscode ├── extensions.json └── settings.json ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── assets ├── add-chain-ui.png ├── add-custom-app.png ├── ai-agent-approve-transaction-1.png ├── ai-agent-approve-transaction-2.png ├── ai-agent-setup.png ├── core-brands.png ├── diagram-4337-execute.png ├── diagram-4337-validate.png ├── diagram-7579.png ├── diagram-7702-approach-1.png ├── diagram-7702-approach-2.png ├── diagram-7702-approach-3.png ├── diagram-fallback-handler.png ├── diagram-safe-7579.png ├── diagram-safe-apps.png ├── diagram-safe-core-protocol.png ├── diagram-safe-guards.png ├── diagram-safe-modules.png ├── diagram-safe-smart-account-proxy-creation.png ├── diagram-safe-smart-account-safe-components.png ├── diagram-safe-smart-accounts-architecture.png ├── diagram-services.png ├── diamond-bg.png ├── diamond-dev.png ├── german.png ├── louis.jpeg ├── monerium-sandbox-add-money.png ├── next.png ├── nuxt.png ├── react-native-passkeys-app-1.png ├── react-native-passkeys-app-2.png ├── react-native-passkeys-app-3.png ├── react-native-passkeys-app.gif ├── react-native-passkeys-play-store.png ├── safe-infrastructure-installation-config-service.png ├── safe-infrastructure-installation-configuration.png ├── safe-passkeys-app-1.png ├── safe-passkeys-app-2.png ├── safe-passkeys-app-3.png ├── safe-smart-accounts.png ├── safe-transaction-service.png ├── safenet-account.png ├── safenet-chains.png ├── safenet-highlevel-overview.png ├── safenet-introduction.png ├── safenet-protocol-overview.png ├── safenet-transaction-phases.png ├── side-bar-menu.png ├── stripe-kyc-address.png ├── stripe-kyc-payment-method.png ├── stripe-kyc-personal-info.png ├── svg │ ├── arrow-back.svg │ ├── arrow-outward.svg │ ├── blog-post.svg │ ├── building.svg │ ├── check-badge.svg │ ├── check.svg │ ├── chevron-down.svg │ ├── close.svg │ ├── code.svg │ ├── command-line.svg │ ├── cross.svg │ ├── demo.svg │ ├── discord-icon.svg │ ├── discord.svg │ ├── discourse-icon.svg │ ├── ellipse-1.svg │ ├── ellipse-2.svg │ ├── ellipse-3.svg │ ├── ellipse-4.svg │ ├── feedback-bad.svg │ ├── feedback-good.svg │ ├── feedback-ok.svg │ ├── filter.svg │ ├── gift.svg │ ├── github-icon.svg │ ├── guides.svg │ ├── hashtag.svg │ ├── ic-api.svg │ ├── ic-sdk.svg │ ├── ic-smart-account.svg │ ├── layers.svg │ ├── lock.svg │ ├── mirror-icon.svg │ ├── money.svg │ ├── people.svg │ ├── podcast.svg │ ├── reference.svg │ ├── report-bug.svg │ ├── safe-logo-white.svg │ ├── safe-logo.svg │ ├── scroll-to-top.svg │ ├── search.svg │ ├── stack-exchange.svg │ ├── teach.svg │ ├── trophy.svg │ ├── x-icon.svg │ └── youtube-icon.svg ├── tanay.png ├── transaction_service_architecture.png └── valle.jpg ├── components ├── ApiReference │ ├── ApiReference.tsx │ ├── Method.tsx │ ├── Network.tsx │ ├── Parameter.tsx │ ├── Path.tsx │ ├── Property.tsx │ ├── Response.tsx │ ├── SampleRequestHeader.tsx │ ├── TOC.tsx │ ├── examples │ │ ├── -v1-about--get.json │ │ ├── -v1-about-deployments--get.json │ │ ├── -v1-about-ethereum-rpc--get.json │ │ ├── -v1-about-ethereum-tracing-rpc--get.json │ │ ├── -v1-about-indexing--get.json │ │ ├── -v1-about-singletons--get.json │ │ ├── -v1-contracts--get.json │ │ ├── -v1-contracts-{address}--get.json │ │ ├── -v1-data-decoder--post.json │ │ ├── -v1-delegates--get.json │ │ ├── -v1-delegates--post.json │ │ ├── -v1-delegates-{delegate_address}--delete.json │ │ ├── -v1-messages-{message_hash}--get.json │ │ ├── -v1-messages-{message_hash}-signatures--post.json │ │ ├── -v1-module-transaction-{module_transaction_id}-get.json │ │ ├── -v1-modules-{address}-safes--get.json │ │ ├── -v1-multisig-transactions-{safe_tx_hash}--delete.json │ │ ├── -v1-multisig-transactions-{safe_tx_hash}--post.json │ │ ├── -v1-multisig-transactions-{safe_tx_hash}-confirmations--get.json │ │ ├── -v1-multisig-transactions-{safe_tx_hash}-confirmations--post.json │ │ ├── -v1-notifications-devices-{uuid}--delete.json │ │ ├── -v1-notifications-devices-{uuid}-safes-{address}--delete.json │ │ ├── -v1-owners-{address}-safes--get.json │ │ ├── -v1-safe-operations-{safe_operation_hash}--get.json │ │ ├── -v1-safe-operations-{safe_operation_hash}-confirmations--get.json │ │ ├── -v1-safe-operations-{safe_operation_hash}-confirmations--post.json │ │ ├── -v1-safes-{address}--get.json │ │ ├── -v1-safes-{address}-balances--get.json │ │ ├── -v1-safes-{address}-creation--get.json │ │ ├── -v1-safes-{address}-delegates-{delegate_address}--delete.json │ │ ├── -v1-safes-{address}-incoming-transfers--get.json │ │ ├── -v1-safes-{address}-messages--get.json │ │ ├── -v1-safes-{address}-messages--post.json │ │ ├── -v1-safes-{address}-module-transactions--get.json │ │ ├── -v1-safes-{address}-multisig-transactions-estimations--post.json │ │ ├── -v1-safes-{address}-safe-operations--get.json │ │ ├── -v1-safes-{address}-safe-operations--post.json │ │ ├── -v1-safes-{address}-transfers--get.json │ │ ├── -v1-safes-{address}-user-operations--get.json │ │ ├── -v1-tokens--get.json │ │ ├── -v1-tokens-{address}--get.json │ │ ├── -v1-transfer-{transfer_id}-get.json │ │ ├── -v1-user-operations-{user_operation_hash}--get.json │ │ ├── -v2-delegates--get.json │ │ ├── -v2-delegates--post.json │ │ ├── -v2-delegates-{delegate_address}--delete.json │ │ ├── -v2-safes-{address}-balances--get.json │ │ ├── -v2-safes-{address}-collectibles--get.json │ │ ├── 0G │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── arbitrum │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── aurora │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── avalanche │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── base-sepolia │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── base │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── bepolia │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── berachain │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── botanix │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── bsc │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── celo │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── chiado │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── codex │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── gnosis-chain │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── hemi │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── hyper-evm │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── ink │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── katana │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── lens │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── linea │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── mainnet │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── mantle │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── monad-testnet │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── monad │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── opbnb │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── optimism │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── peaq │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── plasma │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── polygon │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── scroll │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── sepolia │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── sonic │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── stable │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── unichain │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── worldchain │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── xdc │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── xlayer │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ ├── zkevm │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ │ └── zksync │ │ │ ├── -v1-about--get.ts │ │ │ ├── -v1-about-singletons--get.ts │ │ │ ├── -v1-contracts--get.ts │ │ │ ├── -v1-data-decoder--post.ts │ │ │ ├── -v1-messages-{message_hash}--get.ts │ │ │ ├── -v1-messages-{message_hash}-signatures--post.ts │ │ │ ├── -v1-modules-{address}-safes--get.ts │ │ │ ├── -v1-owners-{address}-safes--get.ts │ │ │ ├── -v1-safes-{address}--get.ts │ │ │ ├── -v1-safes-{address}-creation--get.ts │ │ │ ├── -v1-safes-{address}-messages--get.ts │ │ │ ├── -v1-safes-{address}-messages--post.ts │ │ │ ├── -v1-safes-{address}-module-transactions--get.ts │ │ │ ├── -v1-tokens--get.ts │ │ │ ├── -v1-tokens-{address}--get.ts │ │ │ ├── -v1-user-operations-{user_operation_hash}--get.ts │ │ │ ├── -v2-delegates--get.ts │ │ │ ├── -v2-delegates--post.ts │ │ │ ├── -v2-delegates-{delegate_address}--delete.ts │ │ │ ├── -v2-multisig-transactions-{safe_tx_hash}--get.ts │ │ │ ├── -v2-safes-{address}-all-transactions--get.ts │ │ │ ├── -v2-safes-{address}-multisig-transactions--get.ts │ │ │ └── -v2-safes-{address}-multisig-transactions--post.ts │ ├── generated │ │ ├── 0G-reference.mdx │ │ ├── arbitrum-reference.mdx │ │ ├── aurora-reference.mdx │ │ ├── avalanche-reference.mdx │ │ ├── base-reference.mdx │ │ ├── base-sepolia-reference.mdx │ │ ├── bepolia-reference.mdx │ │ ├── berachain-reference.mdx │ │ ├── botanix-reference.mdx │ │ ├── bsc-reference.mdx │ │ ├── celo-reference.mdx │ │ ├── chiado-reference.mdx │ │ ├── codex-reference.mdx │ │ ├── gnosis-chain-reference.mdx │ │ ├── hemi-reference.mdx │ │ ├── hyper-evm-reference.mdx │ │ ├── ink-reference.mdx │ │ ├── katana-reference.mdx │ │ ├── lens-reference.mdx │ │ ├── linea-reference.mdx │ │ ├── mainnet-reference.mdx │ │ ├── mantle-reference.mdx │ │ ├── monad-reference.mdx │ │ ├── monad-testnet-reference.mdx │ │ ├── opbnb-reference.mdx │ │ ├── optimism-reference.mdx │ │ ├── peaq-reference.mdx │ │ ├── plasma-reference.mdx │ │ ├── polygon-reference.mdx │ │ ├── safe-decoder-service-reference.mdx │ │ ├── scroll-reference.mdx │ │ ├── sepolia-reference.mdx │ │ ├── sonic-reference.mdx │ │ ├── stable-reference.mdx │ │ ├── unichain-reference.mdx │ │ ├── worldchain-reference.mdx │ │ ├── xdc-reference.mdx │ │ ├── xlayer-reference.mdx │ │ ├── zkevm-reference.mdx │ │ └── zksync-reference.mdx │ ├── index.tsx │ ├── paths-metadata.json │ ├── schemas │ │ ├── 0G-swagger.json │ │ ├── arbitrum-swagger.json │ │ ├── aurora-swagger.json │ │ ├── avalanche-swagger.json │ │ ├── base-sepolia-swagger.json │ │ ├── base-swagger.json │ │ ├── bepolia-swagger.json │ │ ├── berachain-swagger.json │ │ ├── botanix-swagger.json │ │ ├── bsc-swagger.json │ │ ├── celo-swagger.json │ │ ├── chiado-swagger.json │ │ ├── codex-swagger.json │ │ ├── gnosis-chain-swagger.json │ │ ├── hemi-swagger.json │ │ ├── hyper-evm-swagger.json │ │ ├── ink-swagger.json │ │ ├── katana-swagger.json │ │ ├── lens-swagger.json │ │ ├── linea-swagger.json │ │ ├── mainnet-swagger.json │ │ ├── mantle-swagger.json │ │ ├── monad-swagger.json │ │ ├── monad-testnet-swagger.json │ │ ├── opbnb-swagger.json │ │ ├── optimism-swagger.json │ │ ├── peaq-swagger.json │ │ ├── plasma-swagger.json │ │ ├── polygon-swagger.json │ │ ├── safe-decoder-service-swagger.json │ │ ├── scroll-swagger.json │ │ ├── sepolia-swagger.json │ │ ├── sonic-swagger.json │ │ ├── stable-swagger.json │ │ ├── unichain-swagger.json │ │ ├── worldchain-swagger.json │ │ ├── xdc-swagger.json │ │ ├── xlayer-swagger.json │ │ ├── zkevm-swagger.json │ │ └── zksync-swagger.json │ ├── styles.module.css │ └── tx-service-networks.json ├── CookieBanner │ ├── CookieBannerContext.tsx │ ├── index.tsx │ └── styles.module.css ├── CustomCard │ ├── index.tsx │ └── styles.module.css ├── Events │ ├── Bounty.tsx │ ├── Events.tsx │ ├── FAQ.tsx │ ├── Survey.tsx │ ├── TeamMember.tsx │ ├── Workshop.tsx │ ├── event-data.json │ ├── index.tsx │ ├── styles.module.css │ └── types.ts ├── Feedback │ └── index.tsx ├── Footer │ ├── Footer.module.css │ ├── index.tsx │ └── useOpenPositions.ts ├── Hr.tsx ├── Loader.tsx ├── MetaTags │ └── index.tsx ├── RemovedContentCallout │ └── index.tsx ├── ResourceHub │ ├── Card.tsx │ ├── Resources.tsx │ ├── SidebarAccordion.tsx │ ├── community-resources.json │ ├── company-resources.json │ ├── index.tsx │ ├── styles.module.css │ └── useResourceSearch.ts ├── SupportedNetworks │ ├── Card.tsx │ ├── NetworkModal.tsx │ ├── Networks.tsx │ ├── SidebarAccordion.tsx │ ├── index.tsx │ ├── networks.json │ ├── styles.module.css │ ├── useNetworksSearch.ts │ └── utils.ts ├── YouTube │ ├── Youtube.module.css │ └── index.tsx └── callouts │ ├── ModuleCallout.mdx │ └── OnlySafeTxCallout.mdx ├── cypress.config.ts ├── examples ├── ai-agent │ ├── .env.example │ ├── agent.ts │ └── tools │ │ ├── math.ts │ │ ├── prices.ts │ │ └── safe.ts ├── passkeys-vue │ ├── app.vue │ ├── components │ │ ├── LoginWithPasskey.vue │ │ └── SafeAccountDetails.vue │ ├── layouts │ │ └── default.vue │ ├── nuxt.config.ts │ ├── stores │ │ └── safe.ts │ └── utils │ │ ├── constants.ts │ │ ├── mintNFT.ts │ │ └── passkeys.ts ├── passkeys │ ├── app │ │ ├── globals.css │ │ ├── layout.tsx │ │ └── page.tsx │ ├── components │ │ ├── LoginWithPasskey.tsx │ │ ├── SafeAccountDetails.tsx │ │ └── SafeThemeProvider.tsx │ ├── lib │ │ ├── constants.ts │ │ ├── mintNFT.ts │ │ └── passkeys.ts │ └── next.config.mjs └── react-native-passkeys │ ├── .env-sample │ ├── App.tsx │ ├── app.json │ └── lib │ ├── passkeys.ts │ ├── safe.ts │ └── storage.ts ├── lib ├── mdx.tsx └── storage │ └── index.ts ├── linkchecker-config.json ├── mdx.d.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── 404.md ├── _app.tsx ├── _document.tsx ├── _meta.json ├── advanced │ ├── _meta.json │ ├── cli-demos.mdx │ ├── cli-guides │ │ ├── _meta.json │ │ └── recovery-safe-deployment.mdx │ ├── cli-installation.mdx │ ├── cli-overview.mdx │ ├── cli-reference.mdx │ ├── cli-reference │ │ ├── _meta.json │ │ ├── common-commands.mdx │ │ ├── tx-service-commands.mdx │ │ └── unattended-commands.mdx │ ├── eip-7702 │ │ ├── 7702-safe.mdx │ │ ├── _meta.json │ │ └── overview.mdx │ ├── erc-4337 │ │ ├── 4337-safe.mdx │ │ ├── _meta.json │ │ ├── guides │ │ │ ├── _meta.json │ │ │ ├── permissionless-detailed.mdx │ │ │ ├── permissionless-quickstart.mdx │ │ │ └── safe-sdk.mdx │ │ └── overview.mdx │ ├── erc-7579 │ │ ├── 7579-safe.mdx │ │ ├── _meta.json │ │ ├── developer-tooling.mdx │ │ ├── overview.mdx │ │ └── tutorials │ │ │ ├── 7579-tutorial.mdx │ │ │ └── _meta.json │ ├── passkeys │ │ ├── _meta.json │ │ ├── overview.mdx │ │ ├── passkeys-safe.mdx │ │ └── tutorials │ │ │ ├── _meta.json │ │ │ ├── nuxt.mdx │ │ │ ├── react-native.mdx │ │ │ └── react.mdx │ ├── smart-account-audits.md │ ├── smart-account-bug-bounty.md │ ├── smart-account-bug-bounty │ │ └── past-paid-bounties.md │ ├── smart-account-concepts.mdx │ ├── smart-account-fallback-handler.mdx │ ├── smart-account-fallback-handler │ │ └── smart-account-fallback-handler-tutorial.mdx │ ├── smart-account-guards.mdx │ ├── smart-account-guards │ │ └── smart-account-guard-tutorial.mdx │ ├── smart-account-migration.mdx │ ├── smart-account-modules.mdx │ ├── smart-account-modules │ │ └── smart-account-modules-tutorial.mdx │ ├── smart-account-multi-chain-deployment.mdx │ ├── smart-account-overview.mdx │ ├── smart-account-signatures.md │ └── smart-account-supported-networks.mdx ├── build-the-new-internet.mdx ├── config-service-configuration │ ├── _meta.json │ ├── add-or-edit-chain.mdx │ ├── add-or-edit-client.mdx │ ├── add-or-edit-feature.mdx │ ├── add-or-edit-gas-price.mdx │ ├── add-or-edit-group.mdx │ ├── add-or-edit-provider.mdx │ ├── add-or-edit-safe-app-feature.mdx │ ├── add-or-edit-safe-app.mdx │ ├── add-or-edit-social-profile.mdx │ ├── add-or-edit-tag.mdx │ ├── add-or-edit-wallet.mdx │ ├── add-user.mdx │ ├── edit-user.mdx │ └── overview.mdx ├── core-api │ ├── _meta.json │ ├── api-overview.mdx │ ├── api-safe-transaction-service.mdx │ ├── api-safe-transaction-service │ │ ├── _meta.json │ │ ├── faq.md │ │ └── rpc-requirements.md │ ├── how-to-use-api-keys.mdx │ ├── safe-contracts-deployment.mdx │ ├── safe-decoder-service-overview.mdx │ ├── safe-decoder-service-reference.mdx │ ├── safe-infrastructure-deployment.mdx │ ├── safe-installation-overview.mdx │ ├── transaction-service-guides │ │ ├── _meta.json │ │ ├── data-decoder.mdx │ │ ├── delegates.mdx │ │ ├── messages.mdx │ │ └── transactions.mdx │ ├── transaction-service-overview.mdx │ └── transaction-service-reference │ │ ├── 0G.mdx │ │ ├── arbitrum.mdx │ │ ├── aurora.mdx │ │ ├── avalanche.mdx │ │ ├── base-sepolia.mdx │ │ ├── base.mdx │ │ ├── bepolia.mdx │ │ ├── berachain.mdx │ │ ├── botanix.mdx │ │ ├── bsc.mdx │ │ ├── celo.mdx │ │ ├── chiado.mdx │ │ ├── codex.mdx │ │ ├── gnosis-chain.mdx │ │ ├── hemi.mdx │ │ ├── hyper-evm.mdx │ │ ├── ink.mdx │ │ ├── katana.mdx │ │ ├── lens.mdx │ │ ├── linea.mdx │ │ ├── mainnet.mdx │ │ ├── mantle.mdx │ │ ├── monad-testnet.mdx │ │ ├── monad.mdx │ │ ├── opbnb.mdx │ │ ├── optimism.mdx │ │ ├── peaq.mdx │ │ ├── plasma.mdx │ │ ├── polygon.mdx │ │ ├── scroll.mdx │ │ ├── sepolia.mdx │ │ ├── sonic.mdx │ │ ├── stable.mdx │ │ ├── unichain.mdx │ │ ├── worldchain.mdx │ │ ├── xdc.mdx │ │ ├── xlayer.mdx │ │ ├── zkevm.mdx │ │ └── zksync.mdx ├── home │ ├── _meta.json │ ├── ai-agent-actions │ │ ├── _meta.json │ │ ├── ai-agent-swaps-on-uniswap.mdx │ │ ├── ai-agent-swaps-with-cow-swap.mdx │ │ └── introduction.mdx │ ├── ai-agent-quickstarts │ │ ├── _meta.json │ │ ├── agent-with-spending-limit.mdx │ │ ├── basic-agent-setup.mdx │ │ ├── human-approval.mdx │ │ ├── introduction.mdx │ │ └── multi-agent-setup.mdx │ ├── ai-agent-setup.mdx │ ├── ai-overview.mdx │ ├── glossary.md │ ├── safe-core.mdx │ └── what-is-safe.mdx ├── index.tsx ├── reference-sdk-api-kit │ ├── _meta.json │ ├── addmessage.mdx │ ├── addmessagesignature.mdx │ ├── addsafedelegate.mdx │ ├── addsafeoperation.mdx │ ├── confirmsafeoperation.mdx │ ├── confirmtransaction.mdx │ ├── constructor.mdx │ ├── decodedata.mdx │ ├── estimatesafetransaction.mdx │ ├── getalltransactions.mdx │ ├── getincomingtransactions.mdx │ ├── getmessage.mdx │ ├── getmessages.mdx │ ├── getmoduletransactions.mdx │ ├── getmultisigtransactions.mdx │ ├── getnextnonce.mdx │ ├── getpendingsafeoperations.mdx │ ├── getpendingtransactions.mdx │ ├── getsafecreationinfo.mdx │ ├── getsafedelegates.mdx │ ├── getsafeinfo.mdx │ ├── getsafeoperation.mdx │ ├── getsafeoperationconfirmations.mdx │ ├── getsafeoperationsbyaddress.mdx │ ├── getsafesbymodule.mdx │ ├── getsafesbyowner.mdx │ ├── getserviceinfo.mdx │ ├── getservicesingletonsinfo.mdx │ ├── gettoken.mdx │ ├── gettokenlist.mdx │ ├── gettransaction.mdx │ ├── gettransactionconfirmations.mdx │ ├── overview.mdx │ ├── proposetransaction.mdx │ └── removesafedelegate.mdx ├── reference-sdk-protocol-kit │ ├── _meta.json │ ├── deployment │ │ ├── _meta.json │ │ ├── createsafedeploymenttransaction.mdx │ │ └── getsafeaddressfromdeploymenttx.mdx │ ├── fallback-handler │ │ ├── _meta.json │ │ ├── createdisablefallbackhandlertx.mdx │ │ └── createenablefallbackhandlertx.mdx │ ├── initialization │ │ ├── _meta.json │ │ ├── connect.mdx │ │ └── init.mdx │ ├── messages │ │ ├── _meta.json │ │ ├── createmessage.mdx │ │ ├── getsafemessagehash.mdx │ │ ├── isvalidsignature.mdx │ │ └── signmessage.mdx │ ├── onchain-tracking │ │ ├── _meta.json │ │ └── getOnchainIdentifier.mdx │ ├── overview.mdx │ ├── passkeys │ │ ├── _meta.json │ │ └── createpasskeysigner.mdx │ ├── safe-guards │ │ ├── _meta.json │ │ ├── createdisableguardtx.mdx │ │ ├── createenableguardtx.mdx │ │ └── getguard.mdx │ ├── safe-info │ │ ├── _meta.json │ │ ├── createaddownertx.mdx │ │ ├── createchangethresholdtx.mdx │ │ ├── createremoveownertx.mdx │ │ ├── createswapownertx.mdx │ │ ├── getaddress.mdx │ │ ├── getbalance.mdx │ │ ├── getchainid.mdx │ │ ├── getcontractversion.mdx │ │ ├── getnonce.mdx │ │ ├── getowners.mdx │ │ ├── getownerswhoapprovedtx.mdx │ │ ├── getthreshold.mdx │ │ └── isowner.mdx │ ├── safe-modules │ │ ├── _meta.json │ │ ├── createdisablemoduletx.mdx │ │ ├── createenablemoduletx.mdx │ │ ├── getmodules.mdx │ │ └── ismoduleenabled.mdx │ ├── transaction-signatures │ │ ├── _meta.json │ │ ├── approvetransactionhash.mdx │ │ ├── signhash.mdx │ │ ├── signtransaction.mdx │ │ └── signtypeddata.mdx │ └── transactions │ │ ├── _meta.json │ │ ├── copytransaction.mdx │ │ ├── createrejectiontransaction.mdx │ │ ├── createtransaction.mdx │ │ ├── executetransaction.mdx │ │ ├── gettransactionhash.mdx │ │ └── isvalidtransaction.mdx ├── reference-sdk-react-hooks │ ├── _meta.json │ ├── createconfig.mdx │ ├── overview.mdx │ ├── safeprovider.mdx │ ├── useconfirmtransaction.mdx │ ├── usesafe.mdx │ ├── usesafe │ │ ├── _meta.json │ │ ├── connect.mdx │ │ ├── disconnect.mdx │ │ ├── getbalance.mdx │ │ ├── getchain.mdx │ │ ├── getpendingtransactions.mdx │ │ ├── getsafeinfo.mdx │ │ ├── getsigneraddress.mdx │ │ ├── gettransaction.mdx │ │ ├── gettransactions.mdx │ │ ├── isinitialized.mdx │ │ ├── isownerconnected.mdx │ │ └── issignerconnected.mdx │ ├── usesendtransaction.mdx │ ├── useupdateowners.mdx │ ├── useupdateowners │ │ ├── _meta.json │ │ ├── add.mdx │ │ ├── remove.mdx │ │ └── swap.mdx │ └── useupdatethreshold.mdx ├── reference-sdk-starter-kit │ ├── _meta.json │ ├── offchain-messages.mdx │ ├── offchain-messages │ │ ├── _meta.json │ │ ├── confirmoffchainmessage.mdx │ │ ├── getpendingoffchainmessages.mdx │ │ └── sendoffchainmessage.mdx │ ├── onchain-messages.mdx │ ├── onchain-messages │ │ ├── _meta.json │ │ └── sendonchainmessage.mdx │ ├── overview.mdx │ ├── safe-client-result.mdx │ ├── safe-client │ │ ├── _meta.json │ │ ├── confirm.mdx │ │ ├── constructor.mdx │ │ ├── createaddownertransaction.mdx │ │ ├── createchangethresholdtransaction.mdx │ │ ├── createremoveownertransaction.mdx │ │ ├── createswapownertransaction.mdx │ │ ├── extend.mdx │ │ ├── getaddress.mdx │ │ ├── getnonce.mdx │ │ ├── getowners.mdx │ │ ├── getownerswhoapprovedtransaction.mdx │ │ ├── getpendingtransactions.mdx │ │ ├── getthreshold.mdx │ │ ├── isdeployed.mdx │ │ ├── isowner.mdx │ │ └── send.mdx │ ├── safe-operations.mdx │ └── safe-operations │ │ ├── _meta.json │ │ ├── confirmsafeoperation.mdx │ │ ├── getpendingsafeoperations.mdx │ │ └── sendsafeoperation.mdx ├── reference-smart-account │ ├── _meta.json │ ├── deployment │ │ ├── SafeProxy.mdx │ │ ├── SafeProxyFactory.mdx │ │ ├── SafeSingleton.mdx │ │ └── _meta.json │ ├── events │ │ ├── AddedOwner.mdx │ │ ├── ApproveHash.mdx │ │ ├── ChangedFallbackHandler.mdx │ │ ├── ChangedGuard.mdx │ │ ├── ChangedModuleGuard.mdx │ │ ├── ChangedThreshold.mdx │ │ ├── DisabledModule.mdx │ │ ├── EnabledModule.mdx │ │ ├── ExecutionFailure.mdx │ │ ├── ExecutionFromModuleFailure.mdx │ │ ├── ExecutionFromModuleSuccess.mdx │ │ ├── ExecutionSuccess.mdx │ │ ├── RemovedOwner.mdx │ │ ├── SafeReceived.mdx │ │ ├── SafeSetup.mdx │ │ └── SignMsg.mdx │ ├── fallback │ │ ├── _meta.json │ │ ├── fallback.mdx │ │ ├── receive.mdx │ │ └── setFallbackHandler.mdx │ ├── guards │ │ ├── _meta.json │ │ ├── setGuard.mdx │ │ └── setModuleGuard.mdx │ ├── modules │ │ ├── _meta.json │ │ ├── disableModule.mdx │ │ ├── enableModule.mdx │ │ ├── execTransactionFromModule.mdx │ │ ├── execTransactionFromModuleReturnData.mdx │ │ ├── getModulesPaginated.mdx │ │ └── isModuleEnabled.mdx │ ├── overview.mdx │ ├── owners │ │ ├── _meta.json │ │ ├── addOwnerWithThreshold.mdx │ │ ├── changeThreshold.mdx │ │ ├── getOwners.mdx │ │ ├── getThreshold.mdx │ │ ├── isOwner.mdx │ │ ├── removeOwner.mdx │ │ └── swapOwner.mdx │ ├── setup │ │ ├── _meta.json │ │ ├── domainSeparator.mdx │ │ └── setup.mdx │ ├── signatures │ │ ├── _meta.json │ │ ├── approveHash.mdx │ │ ├── checkNSignatures.mdx │ │ ├── checkSignatures.mdx │ │ └── signedMessages.mdx │ ├── transactions │ │ ├── _meta.json │ │ ├── encodeTransactionData.mdx │ │ ├── execTransaction.mdx │ │ ├── getTransactionHash.mdx │ │ └── simulateAndRevert.mdx │ └── utilities │ │ ├── _meta.json │ │ └── getStorageAt.mdx ├── resource-hub.mdx ├── safenet │ ├── _meta.json │ ├── architecture.mdx │ ├── chains.mdx │ ├── concepts │ │ ├── _meta.json │ │ ├── attestation.mdx │ │ ├── challenge.mdx │ │ ├── guarantee.mdx │ │ ├── resource-lock.mdx │ │ ├── settlement.mdx │ │ └── universal-balance.mdx │ ├── core-components │ │ ├── _meta.json │ │ ├── end-user.mdx │ │ ├── liquidity-provider.mdx │ │ ├── processor.mdx │ │ ├── safenet-protocol.mdx │ │ ├── transaction-service.mdx │ │ └── validator.mdx │ ├── introduction.mdx │ ├── optimistic-validity-proof.mdx │ ├── overview.mdx │ ├── protocol │ │ ├── _meta.json │ │ ├── beneficiary.mdx │ │ ├── entry-point.mdx │ │ ├── guarantee-engine.mdx │ │ ├── guarantee-implementation.mdx │ │ ├── guard.mdx │ │ ├── home-safe.mdx │ │ ├── overview.mdx │ │ ├── relayer.mdx │ │ ├── safe-dao.mdx │ │ ├── settlement-engine.mdx │ │ └── transceiver.mdx │ ├── safenet-account.mdx │ └── safenet-transaction.mdx ├── sdk │ ├── _meta.json │ ├── api-kit.mdx │ ├── api-kit │ │ ├── _meta.json │ │ └── guides │ │ │ ├── _meta.json │ │ │ ├── migrate-to-v1.md │ │ │ ├── migrate-to-v2.md │ │ │ ├── migrate-to-v3.md │ │ │ ├── migrate-to-v4.md │ │ │ └── propose-and-confirm-transactions.mdx │ ├── onchain-tracking.mdx │ ├── onramp.mdx │ ├── onramp │ │ ├── _meta.json │ │ ├── monerium.mdx │ │ └── stripe.mdx │ ├── overview.mdx │ ├── protocol-kit.mdx │ ├── protocol-kit │ │ ├── _meta.json │ │ └── guides │ │ │ ├── _meta.json │ │ │ ├── execute-transactions.mdx │ │ │ ├── migrate-to-v1.md │ │ │ ├── migrate-to-v2.md │ │ │ ├── migrate-to-v3.md │ │ │ ├── migrate-to-v4.md │ │ │ ├── migrate-to-v5.md │ │ │ ├── migrate-to-v6.md │ │ │ ├── multichain-safe-deployment.mdx │ │ │ ├── safe-deployment.mdx │ │ │ ├── signatures.md │ │ │ └── signatures │ │ │ ├── _meta.json │ │ │ ├── messages.mdx │ │ │ └── transactions.mdx │ ├── react-hooks.mdx │ ├── react-hooks │ │ ├── _meta.json │ │ └── guides │ │ │ ├── _meta.json │ │ │ └── send-transactions.mdx │ ├── relay-kit.mdx │ ├── relay-kit │ │ ├── _meta.json │ │ ├── guides │ │ │ ├── 4337-safe-sdk.mdx │ │ │ ├── _meta.json │ │ │ ├── gelato-relay.mdx │ │ │ ├── migrate-to-v2.md │ │ │ ├── migrate-to-v3.md │ │ │ └── migrate-to-v4.md │ │ └── reference │ │ │ ├── _meta.json │ │ │ └── safe-4337-pack.mdx │ ├── signers.mdx │ ├── signers │ │ ├── _meta.json │ │ ├── dynamic.mdx │ │ ├── magic.mdx │ │ ├── passkeys.mdx │ │ ├── privy.mdx │ │ └── web3auth.mdx │ ├── starter-kit.mdx │ └── starter-kit │ │ ├── _meta.json │ │ └── guides │ │ ├── _meta.json │ │ ├── send-transactions.mdx │ │ └── send-user-operations.mdx └── support.mdx ├── pnpm-lock.yaml ├── public ├── event-background.png ├── favicon.png ├── fonts │ └── Citerne-Light.woff ├── llms-ctx-full.txt ├── llms-ctx.txt ├── llms.txt ├── og_image.png ├── og_image_resource_hub.png └── unknown-logo.png ├── redirects.json ├── styles ├── emotion.ts ├── palette.ts ├── styles.css └── theme.ts ├── tests └── redirections.spec.ts ├── theme.config.tsx └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/nextra-feedback.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/ISSUE_TEMPLATE/nextra-feedback.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/resource-hub-submission.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/ISSUE_TEMPLATE/resource-hub-submission.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/scripts/checkLinksFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/scripts/checkLinksFormat.ts -------------------------------------------------------------------------------- /.github/scripts/generateApiReference.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/scripts/generateApiReference.ts -------------------------------------------------------------------------------- /.github/scripts/generateCodeExamples.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/scripts/generateCodeExamples.ts -------------------------------------------------------------------------------- /.github/scripts/generateSupportedNetworks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/scripts/generateSupportedNetworks.ts -------------------------------------------------------------------------------- /.github/scripts/getResourcesOg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/scripts/getResourcesOg.js -------------------------------------------------------------------------------- /.github/scripts/prepare_production_deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/scripts/prepare_production_deployment.sh -------------------------------------------------------------------------------- /.github/scripts/s3_upload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/scripts/s3_upload.sh -------------------------------------------------------------------------------- /.github/scripts/validateResources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/scripts/validateResources.js -------------------------------------------------------------------------------- /.github/styles/Microsoft/AMPM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/AMPM.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Accessibility.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Accessibility.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Acronyms.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Adverbs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Adverbs.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Auto.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Auto.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Avoid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Avoid.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/ComplexWords.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/ComplexWords.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Contractions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Contractions.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Dashes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Dashes.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/DateFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/DateFormat.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/DateNumbers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/DateNumbers.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/DateOrder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/DateOrder.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Ellipses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Ellipses.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/FirstPerson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/FirstPerson.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Foreign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Foreign.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Gender.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/GenderBias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/GenderBias.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/GeneralURL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/GeneralURL.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/HeadingAcronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/HeadingAcronyms.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/HeadingColons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/HeadingColons.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/HeadingPunctuation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/HeadingPunctuation.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Headings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Headings.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Hyphens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Hyphens.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Negative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Negative.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Ordinal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Ordinal.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/OxfordComma.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Passive.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Percentages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Percentages.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Quotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Quotes.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/RangeFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/RangeFormat.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/RangeTime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/RangeTime.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Ranges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Ranges.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Semicolon.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Semicolon.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/SentenceLength.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/SentenceLength.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Spacing.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Suspended.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Suspended.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Terms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Terms.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/URLFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/URLFormat.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Units.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Units.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Vocab.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Vocab.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/We.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/We.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/Wordiness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/Wordiness.yml -------------------------------------------------------------------------------- /.github/styles/Microsoft/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/Microsoft/meta.json -------------------------------------------------------------------------------- /.github/styles/config/vocabularies/default/accept.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/config/vocabularies/default/accept.txt -------------------------------------------------------------------------------- /.github/styles/config/vocabularies/default/reject.txt: -------------------------------------------------------------------------------- 1 | Github 2 | -------------------------------------------------------------------------------- /.github/styles/write-good/Cliches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/Cliches.yml -------------------------------------------------------------------------------- /.github/styles/write-good/E-Prime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/E-Prime.yml -------------------------------------------------------------------------------- /.github/styles/write-good/Illusions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/Illusions.yml -------------------------------------------------------------------------------- /.github/styles/write-good/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/Passive.yml -------------------------------------------------------------------------------- /.github/styles/write-good/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/README.md -------------------------------------------------------------------------------- /.github/styles/write-good/So.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/So.yml -------------------------------------------------------------------------------- /.github/styles/write-good/ThereIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/ThereIs.yml -------------------------------------------------------------------------------- /.github/styles/write-good/TooWordy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/TooWordy.yml -------------------------------------------------------------------------------- /.github/styles/write-good/Weasel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/Weasel.yml -------------------------------------------------------------------------------- /.github/styles/write-good/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/styles/write-good/meta.json -------------------------------------------------------------------------------- /.github/workflows/deploy-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/workflows/deploy-release.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/generate-supported-networks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/workflows/generate-supported-networks.yml -------------------------------------------------------------------------------- /.github/workflows/link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/workflows/link-check.yml -------------------------------------------------------------------------------- /.github/workflows/report-readability.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/workflows/report-readability.yml -------------------------------------------------------------------------------- /.github/workflows/style-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/workflows/style-check.yml -------------------------------------------------------------------------------- /.github/workflows/weekly-link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.github/workflows/weekly-link-check.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- 1 | pnpm prepush 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.vale.ini -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/README.md -------------------------------------------------------------------------------- /assets/add-chain-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/add-chain-ui.png -------------------------------------------------------------------------------- /assets/add-custom-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/add-custom-app.png -------------------------------------------------------------------------------- /assets/ai-agent-approve-transaction-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/ai-agent-approve-transaction-1.png -------------------------------------------------------------------------------- /assets/ai-agent-approve-transaction-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/ai-agent-approve-transaction-2.png -------------------------------------------------------------------------------- /assets/ai-agent-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/ai-agent-setup.png -------------------------------------------------------------------------------- /assets/core-brands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/core-brands.png -------------------------------------------------------------------------------- /assets/diagram-4337-execute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-4337-execute.png -------------------------------------------------------------------------------- /assets/diagram-4337-validate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-4337-validate.png -------------------------------------------------------------------------------- /assets/diagram-7579.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-7579.png -------------------------------------------------------------------------------- /assets/diagram-7702-approach-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-7702-approach-1.png -------------------------------------------------------------------------------- /assets/diagram-7702-approach-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-7702-approach-2.png -------------------------------------------------------------------------------- /assets/diagram-7702-approach-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-7702-approach-3.png -------------------------------------------------------------------------------- /assets/diagram-fallback-handler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-fallback-handler.png -------------------------------------------------------------------------------- /assets/diagram-safe-7579.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-safe-7579.png -------------------------------------------------------------------------------- /assets/diagram-safe-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-safe-apps.png -------------------------------------------------------------------------------- /assets/diagram-safe-core-protocol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-safe-core-protocol.png -------------------------------------------------------------------------------- /assets/diagram-safe-guards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-safe-guards.png -------------------------------------------------------------------------------- /assets/diagram-safe-modules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-safe-modules.png -------------------------------------------------------------------------------- /assets/diagram-safe-smart-account-proxy-creation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-safe-smart-account-proxy-creation.png -------------------------------------------------------------------------------- /assets/diagram-safe-smart-account-safe-components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-safe-smart-account-safe-components.png -------------------------------------------------------------------------------- /assets/diagram-safe-smart-accounts-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-safe-smart-accounts-architecture.png -------------------------------------------------------------------------------- /assets/diagram-services.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diagram-services.png -------------------------------------------------------------------------------- /assets/diamond-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diamond-bg.png -------------------------------------------------------------------------------- /assets/diamond-dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/diamond-dev.png -------------------------------------------------------------------------------- /assets/german.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/german.png -------------------------------------------------------------------------------- /assets/louis.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/louis.jpeg -------------------------------------------------------------------------------- /assets/monerium-sandbox-add-money.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/monerium-sandbox-add-money.png -------------------------------------------------------------------------------- /assets/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/next.png -------------------------------------------------------------------------------- /assets/nuxt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/nuxt.png -------------------------------------------------------------------------------- /assets/react-native-passkeys-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/react-native-passkeys-app-1.png -------------------------------------------------------------------------------- /assets/react-native-passkeys-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/react-native-passkeys-app-2.png -------------------------------------------------------------------------------- /assets/react-native-passkeys-app-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/react-native-passkeys-app-3.png -------------------------------------------------------------------------------- /assets/react-native-passkeys-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/react-native-passkeys-app.gif -------------------------------------------------------------------------------- /assets/react-native-passkeys-play-store.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/react-native-passkeys-play-store.png -------------------------------------------------------------------------------- /assets/safe-infrastructure-installation-config-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safe-infrastructure-installation-config-service.png -------------------------------------------------------------------------------- /assets/safe-infrastructure-installation-configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safe-infrastructure-installation-configuration.png -------------------------------------------------------------------------------- /assets/safe-passkeys-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safe-passkeys-app-1.png -------------------------------------------------------------------------------- /assets/safe-passkeys-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safe-passkeys-app-2.png -------------------------------------------------------------------------------- /assets/safe-passkeys-app-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safe-passkeys-app-3.png -------------------------------------------------------------------------------- /assets/safe-smart-accounts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safe-smart-accounts.png -------------------------------------------------------------------------------- /assets/safe-transaction-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safe-transaction-service.png -------------------------------------------------------------------------------- /assets/safenet-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safenet-account.png -------------------------------------------------------------------------------- /assets/safenet-chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safenet-chains.png -------------------------------------------------------------------------------- /assets/safenet-highlevel-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safenet-highlevel-overview.png -------------------------------------------------------------------------------- /assets/safenet-introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safenet-introduction.png -------------------------------------------------------------------------------- /assets/safenet-protocol-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safenet-protocol-overview.png -------------------------------------------------------------------------------- /assets/safenet-transaction-phases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/safenet-transaction-phases.png -------------------------------------------------------------------------------- /assets/side-bar-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/side-bar-menu.png -------------------------------------------------------------------------------- /assets/stripe-kyc-address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/stripe-kyc-address.png -------------------------------------------------------------------------------- /assets/stripe-kyc-payment-method.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/stripe-kyc-payment-method.png -------------------------------------------------------------------------------- /assets/stripe-kyc-personal-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/stripe-kyc-personal-info.png -------------------------------------------------------------------------------- /assets/svg/arrow-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/arrow-back.svg -------------------------------------------------------------------------------- /assets/svg/arrow-outward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/arrow-outward.svg -------------------------------------------------------------------------------- /assets/svg/blog-post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/blog-post.svg -------------------------------------------------------------------------------- /assets/svg/building.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/building.svg -------------------------------------------------------------------------------- /assets/svg/check-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/check-badge.svg -------------------------------------------------------------------------------- /assets/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/check.svg -------------------------------------------------------------------------------- /assets/svg/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/chevron-down.svg -------------------------------------------------------------------------------- /assets/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/close.svg -------------------------------------------------------------------------------- /assets/svg/code.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/code.svg -------------------------------------------------------------------------------- /assets/svg/command-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/command-line.svg -------------------------------------------------------------------------------- /assets/svg/cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/cross.svg -------------------------------------------------------------------------------- /assets/svg/demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/demo.svg -------------------------------------------------------------------------------- /assets/svg/discord-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/discord-icon.svg -------------------------------------------------------------------------------- /assets/svg/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/discord.svg -------------------------------------------------------------------------------- /assets/svg/discourse-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/discourse-icon.svg -------------------------------------------------------------------------------- /assets/svg/ellipse-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/ellipse-1.svg -------------------------------------------------------------------------------- /assets/svg/ellipse-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/ellipse-2.svg -------------------------------------------------------------------------------- /assets/svg/ellipse-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/ellipse-3.svg -------------------------------------------------------------------------------- /assets/svg/ellipse-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/ellipse-4.svg -------------------------------------------------------------------------------- /assets/svg/feedback-bad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/feedback-bad.svg -------------------------------------------------------------------------------- /assets/svg/feedback-good.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/feedback-good.svg -------------------------------------------------------------------------------- /assets/svg/feedback-ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/feedback-ok.svg -------------------------------------------------------------------------------- /assets/svg/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/filter.svg -------------------------------------------------------------------------------- /assets/svg/gift.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/gift.svg -------------------------------------------------------------------------------- /assets/svg/github-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/github-icon.svg -------------------------------------------------------------------------------- /assets/svg/guides.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/guides.svg -------------------------------------------------------------------------------- /assets/svg/hashtag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/hashtag.svg -------------------------------------------------------------------------------- /assets/svg/ic-api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/ic-api.svg -------------------------------------------------------------------------------- /assets/svg/ic-sdk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/ic-sdk.svg -------------------------------------------------------------------------------- /assets/svg/ic-smart-account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/ic-smart-account.svg -------------------------------------------------------------------------------- /assets/svg/layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/layers.svg -------------------------------------------------------------------------------- /assets/svg/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/lock.svg -------------------------------------------------------------------------------- /assets/svg/mirror-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/mirror-icon.svg -------------------------------------------------------------------------------- /assets/svg/money.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/money.svg -------------------------------------------------------------------------------- /assets/svg/people.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/people.svg -------------------------------------------------------------------------------- /assets/svg/podcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/podcast.svg -------------------------------------------------------------------------------- /assets/svg/reference.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/reference.svg -------------------------------------------------------------------------------- /assets/svg/report-bug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/report-bug.svg -------------------------------------------------------------------------------- /assets/svg/safe-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/safe-logo-white.svg -------------------------------------------------------------------------------- /assets/svg/safe-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/safe-logo.svg -------------------------------------------------------------------------------- /assets/svg/scroll-to-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/scroll-to-top.svg -------------------------------------------------------------------------------- /assets/svg/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/search.svg -------------------------------------------------------------------------------- /assets/svg/stack-exchange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/stack-exchange.svg -------------------------------------------------------------------------------- /assets/svg/teach.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/teach.svg -------------------------------------------------------------------------------- /assets/svg/trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/trophy.svg -------------------------------------------------------------------------------- /assets/svg/x-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/x-icon.svg -------------------------------------------------------------------------------- /assets/svg/youtube-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/svg/youtube-icon.svg -------------------------------------------------------------------------------- /assets/tanay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/tanay.png -------------------------------------------------------------------------------- /assets/transaction_service_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/transaction_service_architecture.png -------------------------------------------------------------------------------- /assets/valle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/assets/valle.jpg -------------------------------------------------------------------------------- /components/ApiReference/ApiReference.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/ApiReference.tsx -------------------------------------------------------------------------------- /components/ApiReference/Method.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/Method.tsx -------------------------------------------------------------------------------- /components/ApiReference/Network.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/Network.tsx -------------------------------------------------------------------------------- /components/ApiReference/Parameter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/Parameter.tsx -------------------------------------------------------------------------------- /components/ApiReference/Path.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/Path.tsx -------------------------------------------------------------------------------- /components/ApiReference/Property.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/Property.tsx -------------------------------------------------------------------------------- /components/ApiReference/Response.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/Response.tsx -------------------------------------------------------------------------------- /components/ApiReference/SampleRequestHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/SampleRequestHeader.tsx -------------------------------------------------------------------------------- /components/ApiReference/TOC.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/TOC.tsx -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-about--get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/-v1-about--get.json -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-contracts--get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/-v1-contracts--get.json -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-delegates--get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/-v1-delegates--get.json -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-delegates--post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/-v1-delegates--post.json -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-delegates-{delegate_address}--delete.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-messages-{message_hash}-signatures--post.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-modules-{address}-safes--get.json: -------------------------------------------------------------------------------- 1 | { 2 | "safes": ["0x5298A93734C3D979eF1f23F78eBB871879A21F22"] 3 | } 4 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-multisig-transactions-{safe_tx_hash}--delete.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-multisig-transactions-{safe_tx_hash}--post.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-notifications-devices-{uuid}--delete.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-notifications-devices-{uuid}-safes-{address}--delete.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-safe-operations-{safe_operation_hash}-confirmations--post.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-safes-{address}-delegates-{delegate_address}--delete.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-safes-{address}-messages--post.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-safes-{address}-multisig-transactions-estimations--post.json: -------------------------------------------------------------------------------- 1 | { 2 | "safeTxGas": "42806" 3 | } 4 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-safes-{address}-safe-operations--post.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v1-tokens--get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/-v1-tokens--get.json -------------------------------------------------------------------------------- /components/ApiReference/examples/-v2-delegates--get.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/-v2-delegates--get.json -------------------------------------------------------------------------------- /components/ApiReference/examples/-v2-delegates--post.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/-v2-delegates-{delegate_address}--delete.json: -------------------------------------------------------------------------------- 1 | Empty Response 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/0G/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/0G/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/0G/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/0G/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/0G/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/0G/-v2-delegates--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/0G/-v2-delegates--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/0G/-v2-delegates--post.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/0G/-v2-delegates--post.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/arbitrum/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/aurora/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/aurora/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/aurora/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/aurora/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/aurora/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/avalanche/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/base-sepolia/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/base/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/base/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/base/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/base/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/base/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/bepolia/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/bepolia/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/bepolia/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/berachain/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/botanix/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/botanix/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/botanix/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/bsc/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/bsc/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/bsc/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/bsc/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/bsc/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/bsc/-v2-delegates--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/bsc/-v2-delegates--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/celo/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/celo/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/celo/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/celo/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/celo/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/chiado/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/chiado/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/chiado/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/chiado/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/chiado/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/codex/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/codex/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/codex/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/codex/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/codex/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/gnosis-chain/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/hemi/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/hemi/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/hemi/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/hemi/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/hemi/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/hyper-evm/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/ink/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/ink/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/ink/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/ink/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/ink/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/ink/-v2-delegates--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/ink/-v2-delegates--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/katana/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/katana/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/katana/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/katana/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/katana/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/lens/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/lens/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/lens/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/lens/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/lens/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/linea/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/linea/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/linea/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/linea/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/linea/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/mainnet/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/mainnet/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/mainnet/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/mantle/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/mantle/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/mantle/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/mantle/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/mantle/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/monad-testnet/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/monad/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/monad/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/monad/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/monad/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/monad/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/opbnb/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/opbnb/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/opbnb/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/opbnb/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/opbnb/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/optimism/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/peaq/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/peaq/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/peaq/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/peaq/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/peaq/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/plasma/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/plasma/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/plasma/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/plasma/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/plasma/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/polygon/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/polygon/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/polygon/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/scroll/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/scroll/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/scroll/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/scroll/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/scroll/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/sepolia/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/sepolia/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/sepolia/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/sonic/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/sonic/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/sonic/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/sonic/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/sonic/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/stable/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/stable/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/stable/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/stable/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/stable/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/unichain/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/worldchain/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/xdc/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/xdc/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/xdc/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/xdc/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/xdc/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/xdc/-v2-delegates--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/xdc/-v2-delegates--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/xlayer/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/xlayer/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/xlayer/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/xlayer/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/xlayer/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/zkevm/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/zkevm/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/zkevm/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/zkevm/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/zkevm/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/zksync/-v1-about--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/zksync/-v1-about--get.ts -------------------------------------------------------------------------------- /components/ApiReference/examples/zksync/-v1-contracts--get.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /components/ApiReference/examples/zksync/-v1-tokens--get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/examples/zksync/-v1-tokens--get.ts -------------------------------------------------------------------------------- /components/ApiReference/generated/0G-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/0G-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/arbitrum-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/arbitrum-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/aurora-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/aurora-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/avalanche-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/avalanche-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/base-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/base-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/bepolia-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/bepolia-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/berachain-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/berachain-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/botanix-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/botanix-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/bsc-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/bsc-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/celo-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/celo-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/chiado-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/chiado-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/codex-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/codex-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/hemi-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/hemi-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/hyper-evm-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/hyper-evm-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/ink-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/ink-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/katana-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/katana-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/lens-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/lens-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/linea-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/linea-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/mainnet-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/mainnet-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/mantle-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/mantle-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/monad-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/monad-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/opbnb-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/opbnb-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/optimism-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/optimism-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/peaq-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/peaq-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/plasma-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/plasma-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/polygon-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/polygon-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/scroll-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/scroll-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/sepolia-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/sepolia-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/sonic-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/sonic-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/stable-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/stable-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/unichain-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/unichain-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/worldchain-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/worldchain-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/xdc-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/xdc-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/xlayer-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/xlayer-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/zkevm-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/zkevm-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/generated/zksync-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/generated/zksync-reference.mdx -------------------------------------------------------------------------------- /components/ApiReference/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/index.tsx -------------------------------------------------------------------------------- /components/ApiReference/paths-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/paths-metadata.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/0G-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/0G-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/arbitrum-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/arbitrum-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/aurora-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/aurora-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/avalanche-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/avalanche-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/base-sepolia-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/base-sepolia-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/base-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/base-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/bepolia-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/bepolia-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/berachain-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/berachain-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/botanix-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/botanix-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/bsc-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/bsc-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/celo-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/celo-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/chiado-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/chiado-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/codex-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/codex-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/gnosis-chain-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/gnosis-chain-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/hemi-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/hemi-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/hyper-evm-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/hyper-evm-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/ink-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/ink-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/katana-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/katana-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/lens-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/lens-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/linea-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/linea-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/mainnet-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/mainnet-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/mantle-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/mantle-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/monad-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/monad-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/monad-testnet-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/monad-testnet-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/opbnb-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/opbnb-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/optimism-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/optimism-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/peaq-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/peaq-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/plasma-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/plasma-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/polygon-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/polygon-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/scroll-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/scroll-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/sepolia-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/sepolia-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/sonic-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/sonic-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/stable-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/stable-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/unichain-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/unichain-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/worldchain-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/worldchain-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/xdc-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/xdc-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/xlayer-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/xlayer-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/zkevm-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/zkevm-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/schemas/zksync-swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/schemas/zksync-swagger.json -------------------------------------------------------------------------------- /components/ApiReference/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/styles.module.css -------------------------------------------------------------------------------- /components/ApiReference/tx-service-networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ApiReference/tx-service-networks.json -------------------------------------------------------------------------------- /components/CookieBanner/CookieBannerContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/CookieBanner/CookieBannerContext.tsx -------------------------------------------------------------------------------- /components/CookieBanner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/CookieBanner/index.tsx -------------------------------------------------------------------------------- /components/CookieBanner/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/CookieBanner/styles.module.css -------------------------------------------------------------------------------- /components/CustomCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/CustomCard/index.tsx -------------------------------------------------------------------------------- /components/CustomCard/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/CustomCard/styles.module.css -------------------------------------------------------------------------------- /components/Events/Bounty.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/Bounty.tsx -------------------------------------------------------------------------------- /components/Events/Events.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/Events.tsx -------------------------------------------------------------------------------- /components/Events/FAQ.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/FAQ.tsx -------------------------------------------------------------------------------- /components/Events/Survey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/Survey.tsx -------------------------------------------------------------------------------- /components/Events/TeamMember.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/TeamMember.tsx -------------------------------------------------------------------------------- /components/Events/Workshop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/Workshop.tsx -------------------------------------------------------------------------------- /components/Events/event-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/event-data.json -------------------------------------------------------------------------------- /components/Events/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/index.tsx -------------------------------------------------------------------------------- /components/Events/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/styles.module.css -------------------------------------------------------------------------------- /components/Events/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Events/types.ts -------------------------------------------------------------------------------- /components/Feedback/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Feedback/index.tsx -------------------------------------------------------------------------------- /components/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Footer/Footer.module.css -------------------------------------------------------------------------------- /components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Footer/index.tsx -------------------------------------------------------------------------------- /components/Footer/useOpenPositions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Footer/useOpenPositions.ts -------------------------------------------------------------------------------- /components/Hr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Hr.tsx -------------------------------------------------------------------------------- /components/Loader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/Loader.tsx -------------------------------------------------------------------------------- /components/MetaTags/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/MetaTags/index.tsx -------------------------------------------------------------------------------- /components/RemovedContentCallout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/RemovedContentCallout/index.tsx -------------------------------------------------------------------------------- /components/ResourceHub/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ResourceHub/Card.tsx -------------------------------------------------------------------------------- /components/ResourceHub/Resources.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ResourceHub/Resources.tsx -------------------------------------------------------------------------------- /components/ResourceHub/SidebarAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ResourceHub/SidebarAccordion.tsx -------------------------------------------------------------------------------- /components/ResourceHub/community-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ResourceHub/community-resources.json -------------------------------------------------------------------------------- /components/ResourceHub/company-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ResourceHub/company-resources.json -------------------------------------------------------------------------------- /components/ResourceHub/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ResourceHub/index.tsx -------------------------------------------------------------------------------- /components/ResourceHub/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ResourceHub/styles.module.css -------------------------------------------------------------------------------- /components/ResourceHub/useResourceSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/ResourceHub/useResourceSearch.ts -------------------------------------------------------------------------------- /components/SupportedNetworks/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/SupportedNetworks/Card.tsx -------------------------------------------------------------------------------- /components/SupportedNetworks/NetworkModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/SupportedNetworks/NetworkModal.tsx -------------------------------------------------------------------------------- /components/SupportedNetworks/Networks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/SupportedNetworks/Networks.tsx -------------------------------------------------------------------------------- /components/SupportedNetworks/SidebarAccordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/SupportedNetworks/SidebarAccordion.tsx -------------------------------------------------------------------------------- /components/SupportedNetworks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/SupportedNetworks/index.tsx -------------------------------------------------------------------------------- /components/SupportedNetworks/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/SupportedNetworks/networks.json -------------------------------------------------------------------------------- /components/SupportedNetworks/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/SupportedNetworks/styles.module.css -------------------------------------------------------------------------------- /components/SupportedNetworks/useNetworksSearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/SupportedNetworks/useNetworksSearch.ts -------------------------------------------------------------------------------- /components/SupportedNetworks/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/SupportedNetworks/utils.ts -------------------------------------------------------------------------------- /components/YouTube/Youtube.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/YouTube/Youtube.module.css -------------------------------------------------------------------------------- /components/YouTube/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/YouTube/index.tsx -------------------------------------------------------------------------------- /components/callouts/ModuleCallout.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/callouts/ModuleCallout.mdx -------------------------------------------------------------------------------- /components/callouts/OnlySafeTxCallout.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/components/callouts/OnlySafeTxCallout.mdx -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /examples/ai-agent/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/ai-agent/.env.example -------------------------------------------------------------------------------- /examples/ai-agent/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/ai-agent/agent.ts -------------------------------------------------------------------------------- /examples/ai-agent/tools/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/ai-agent/tools/math.ts -------------------------------------------------------------------------------- /examples/ai-agent/tools/prices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/ai-agent/tools/prices.ts -------------------------------------------------------------------------------- /examples/ai-agent/tools/safe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/ai-agent/tools/safe.ts -------------------------------------------------------------------------------- /examples/passkeys-vue/app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys-vue/app.vue -------------------------------------------------------------------------------- /examples/passkeys-vue/components/LoginWithPasskey.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys-vue/components/LoginWithPasskey.vue -------------------------------------------------------------------------------- /examples/passkeys-vue/components/SafeAccountDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys-vue/components/SafeAccountDetails.vue -------------------------------------------------------------------------------- /examples/passkeys-vue/layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys-vue/layouts/default.vue -------------------------------------------------------------------------------- /examples/passkeys-vue/nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys-vue/nuxt.config.ts -------------------------------------------------------------------------------- /examples/passkeys-vue/stores/safe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys-vue/stores/safe.ts -------------------------------------------------------------------------------- /examples/passkeys-vue/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys-vue/utils/constants.ts -------------------------------------------------------------------------------- /examples/passkeys-vue/utils/mintNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys-vue/utils/mintNFT.ts -------------------------------------------------------------------------------- /examples/passkeys-vue/utils/passkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys-vue/utils/passkeys.ts -------------------------------------------------------------------------------- /examples/passkeys/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/app/globals.css -------------------------------------------------------------------------------- /examples/passkeys/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/app/layout.tsx -------------------------------------------------------------------------------- /examples/passkeys/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/app/page.tsx -------------------------------------------------------------------------------- /examples/passkeys/components/LoginWithPasskey.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/components/LoginWithPasskey.tsx -------------------------------------------------------------------------------- /examples/passkeys/components/SafeAccountDetails.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/components/SafeAccountDetails.tsx -------------------------------------------------------------------------------- /examples/passkeys/components/SafeThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/components/SafeThemeProvider.tsx -------------------------------------------------------------------------------- /examples/passkeys/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/lib/constants.ts -------------------------------------------------------------------------------- /examples/passkeys/lib/mintNFT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/lib/mintNFT.ts -------------------------------------------------------------------------------- /examples/passkeys/lib/passkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/lib/passkeys.ts -------------------------------------------------------------------------------- /examples/passkeys/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/passkeys/next.config.mjs -------------------------------------------------------------------------------- /examples/react-native-passkeys/.env-sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/react-native-passkeys/.env-sample -------------------------------------------------------------------------------- /examples/react-native-passkeys/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/react-native-passkeys/App.tsx -------------------------------------------------------------------------------- /examples/react-native-passkeys/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/react-native-passkeys/app.json -------------------------------------------------------------------------------- /examples/react-native-passkeys/lib/passkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/react-native-passkeys/lib/passkeys.ts -------------------------------------------------------------------------------- /examples/react-native-passkeys/lib/safe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/react-native-passkeys/lib/safe.ts -------------------------------------------------------------------------------- /examples/react-native-passkeys/lib/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/examples/react-native-passkeys/lib/storage.ts -------------------------------------------------------------------------------- /lib/mdx.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/lib/mdx.tsx -------------------------------------------------------------------------------- /lib/storage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/lib/storage/index.ts -------------------------------------------------------------------------------- /linkchecker-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/linkchecker-config.json -------------------------------------------------------------------------------- /mdx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/mdx.d.ts -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/package.json -------------------------------------------------------------------------------- /pages/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/404.md -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/_meta.json -------------------------------------------------------------------------------- /pages/advanced/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/_meta.json -------------------------------------------------------------------------------- /pages/advanced/cli-demos.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-demos.mdx -------------------------------------------------------------------------------- /pages/advanced/cli-guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-guides/_meta.json -------------------------------------------------------------------------------- /pages/advanced/cli-guides/recovery-safe-deployment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-guides/recovery-safe-deployment.mdx -------------------------------------------------------------------------------- /pages/advanced/cli-installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-installation.mdx -------------------------------------------------------------------------------- /pages/advanced/cli-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-overview.mdx -------------------------------------------------------------------------------- /pages/advanced/cli-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-reference.mdx -------------------------------------------------------------------------------- /pages/advanced/cli-reference/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-reference/_meta.json -------------------------------------------------------------------------------- /pages/advanced/cli-reference/common-commands.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-reference/common-commands.mdx -------------------------------------------------------------------------------- /pages/advanced/cli-reference/tx-service-commands.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-reference/tx-service-commands.mdx -------------------------------------------------------------------------------- /pages/advanced/cli-reference/unattended-commands.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/cli-reference/unattended-commands.mdx -------------------------------------------------------------------------------- /pages/advanced/eip-7702/7702-safe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/eip-7702/7702-safe.mdx -------------------------------------------------------------------------------- /pages/advanced/eip-7702/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/eip-7702/_meta.json -------------------------------------------------------------------------------- /pages/advanced/eip-7702/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/eip-7702/overview.mdx -------------------------------------------------------------------------------- /pages/advanced/erc-4337/4337-safe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-4337/4337-safe.mdx -------------------------------------------------------------------------------- /pages/advanced/erc-4337/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-4337/_meta.json -------------------------------------------------------------------------------- /pages/advanced/erc-4337/guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-4337/guides/_meta.json -------------------------------------------------------------------------------- /pages/advanced/erc-4337/guides/permissionless-detailed.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-4337/guides/permissionless-detailed.mdx -------------------------------------------------------------------------------- /pages/advanced/erc-4337/guides/safe-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-4337/guides/safe-sdk.mdx -------------------------------------------------------------------------------- /pages/advanced/erc-4337/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-4337/overview.mdx -------------------------------------------------------------------------------- /pages/advanced/erc-7579/7579-safe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-7579/7579-safe.mdx -------------------------------------------------------------------------------- /pages/advanced/erc-7579/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-7579/_meta.json -------------------------------------------------------------------------------- /pages/advanced/erc-7579/developer-tooling.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-7579/developer-tooling.mdx -------------------------------------------------------------------------------- /pages/advanced/erc-7579/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-7579/overview.mdx -------------------------------------------------------------------------------- /pages/advanced/erc-7579/tutorials/7579-tutorial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-7579/tutorials/7579-tutorial.mdx -------------------------------------------------------------------------------- /pages/advanced/erc-7579/tutorials/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/erc-7579/tutorials/_meta.json -------------------------------------------------------------------------------- /pages/advanced/passkeys/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/passkeys/_meta.json -------------------------------------------------------------------------------- /pages/advanced/passkeys/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/passkeys/overview.mdx -------------------------------------------------------------------------------- /pages/advanced/passkeys/passkeys-safe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/passkeys/passkeys-safe.mdx -------------------------------------------------------------------------------- /pages/advanced/passkeys/tutorials/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/passkeys/tutorials/_meta.json -------------------------------------------------------------------------------- /pages/advanced/passkeys/tutorials/nuxt.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/passkeys/tutorials/nuxt.mdx -------------------------------------------------------------------------------- /pages/advanced/passkeys/tutorials/react-native.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/passkeys/tutorials/react-native.mdx -------------------------------------------------------------------------------- /pages/advanced/passkeys/tutorials/react.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/passkeys/tutorials/react.mdx -------------------------------------------------------------------------------- /pages/advanced/smart-account-audits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-audits.md -------------------------------------------------------------------------------- /pages/advanced/smart-account-bug-bounty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-bug-bounty.md -------------------------------------------------------------------------------- /pages/advanced/smart-account-concepts.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-concepts.mdx -------------------------------------------------------------------------------- /pages/advanced/smart-account-fallback-handler.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-fallback-handler.mdx -------------------------------------------------------------------------------- /pages/advanced/smart-account-guards.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-guards.mdx -------------------------------------------------------------------------------- /pages/advanced/smart-account-migration.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-migration.mdx -------------------------------------------------------------------------------- /pages/advanced/smart-account-modules.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-modules.mdx -------------------------------------------------------------------------------- /pages/advanced/smart-account-multi-chain-deployment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-multi-chain-deployment.mdx -------------------------------------------------------------------------------- /pages/advanced/smart-account-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-overview.mdx -------------------------------------------------------------------------------- /pages/advanced/smart-account-signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-signatures.md -------------------------------------------------------------------------------- /pages/advanced/smart-account-supported-networks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/advanced/smart-account-supported-networks.mdx -------------------------------------------------------------------------------- /pages/build-the-new-internet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/build-the-new-internet.mdx -------------------------------------------------------------------------------- /pages/config-service-configuration/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/_meta.json -------------------------------------------------------------------------------- /pages/config-service-configuration/add-or-edit-chain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/add-or-edit-chain.mdx -------------------------------------------------------------------------------- /pages/config-service-configuration/add-or-edit-client.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/add-or-edit-client.mdx -------------------------------------------------------------------------------- /pages/config-service-configuration/add-or-edit-feature.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/add-or-edit-feature.mdx -------------------------------------------------------------------------------- /pages/config-service-configuration/add-or-edit-group.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/add-or-edit-group.mdx -------------------------------------------------------------------------------- /pages/config-service-configuration/add-or-edit-tag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/add-or-edit-tag.mdx -------------------------------------------------------------------------------- /pages/config-service-configuration/add-or-edit-wallet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/add-or-edit-wallet.mdx -------------------------------------------------------------------------------- /pages/config-service-configuration/add-user.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/add-user.mdx -------------------------------------------------------------------------------- /pages/config-service-configuration/edit-user.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/edit-user.mdx -------------------------------------------------------------------------------- /pages/config-service-configuration/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/config-service-configuration/overview.mdx -------------------------------------------------------------------------------- /pages/core-api/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/_meta.json -------------------------------------------------------------------------------- /pages/core-api/api-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/api-overview.mdx -------------------------------------------------------------------------------- /pages/core-api/api-safe-transaction-service.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/api-safe-transaction-service.mdx -------------------------------------------------------------------------------- /pages/core-api/api-safe-transaction-service/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/api-safe-transaction-service/_meta.json -------------------------------------------------------------------------------- /pages/core-api/api-safe-transaction-service/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/api-safe-transaction-service/faq.md -------------------------------------------------------------------------------- /pages/core-api/how-to-use-api-keys.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/how-to-use-api-keys.mdx -------------------------------------------------------------------------------- /pages/core-api/safe-contracts-deployment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/safe-contracts-deployment.mdx -------------------------------------------------------------------------------- /pages/core-api/safe-decoder-service-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/safe-decoder-service-overview.mdx -------------------------------------------------------------------------------- /pages/core-api/safe-decoder-service-reference.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/safe-decoder-service-reference.mdx -------------------------------------------------------------------------------- /pages/core-api/safe-infrastructure-deployment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/safe-infrastructure-deployment.mdx -------------------------------------------------------------------------------- /pages/core-api/safe-installation-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/safe-installation-overview.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-guides/_meta.json -------------------------------------------------------------------------------- /pages/core-api/transaction-service-guides/data-decoder.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-guides/data-decoder.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-guides/delegates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-guides/delegates.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-guides/messages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-guides/messages.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-guides/transactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-guides/transactions.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-overview.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/0G.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/0G.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/arbitrum.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/arbitrum.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/aurora.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/aurora.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/avalanche.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/avalanche.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/base.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/base.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/bepolia.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/bepolia.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/berachain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/berachain.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/botanix.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/botanix.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/bsc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/bsc.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/celo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/celo.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/chiado.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/chiado.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/codex.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/codex.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/hemi.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/hemi.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/hyper-evm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/hyper-evm.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/ink.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/ink.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/katana.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/katana.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/lens.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/lens.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/linea.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/linea.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/mainnet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/mainnet.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/mantle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/mantle.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/monad.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/monad.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/opbnb.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/opbnb.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/optimism.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/optimism.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/peaq.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/peaq.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/plasma.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/plasma.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/polygon.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/polygon.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/scroll.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/scroll.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/sepolia.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/sepolia.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/sonic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/sonic.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/stable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/stable.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/unichain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/unichain.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/xdc.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/xdc.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/xlayer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/xlayer.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/zkevm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/zkevm.mdx -------------------------------------------------------------------------------- /pages/core-api/transaction-service-reference/zksync.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/core-api/transaction-service-reference/zksync.mdx -------------------------------------------------------------------------------- /pages/home/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/_meta.json -------------------------------------------------------------------------------- /pages/home/ai-agent-actions/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-agent-actions/_meta.json -------------------------------------------------------------------------------- /pages/home/ai-agent-actions/ai-agent-swaps-on-uniswap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-agent-actions/ai-agent-swaps-on-uniswap.mdx -------------------------------------------------------------------------------- /pages/home/ai-agent-actions/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-agent-actions/introduction.mdx -------------------------------------------------------------------------------- /pages/home/ai-agent-quickstarts/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-agent-quickstarts/_meta.json -------------------------------------------------------------------------------- /pages/home/ai-agent-quickstarts/basic-agent-setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-agent-quickstarts/basic-agent-setup.mdx -------------------------------------------------------------------------------- /pages/home/ai-agent-quickstarts/human-approval.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-agent-quickstarts/human-approval.mdx -------------------------------------------------------------------------------- /pages/home/ai-agent-quickstarts/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-agent-quickstarts/introduction.mdx -------------------------------------------------------------------------------- /pages/home/ai-agent-quickstarts/multi-agent-setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-agent-quickstarts/multi-agent-setup.mdx -------------------------------------------------------------------------------- /pages/home/ai-agent-setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-agent-setup.mdx -------------------------------------------------------------------------------- /pages/home/ai-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/ai-overview.mdx -------------------------------------------------------------------------------- /pages/home/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/glossary.md -------------------------------------------------------------------------------- /pages/home/safe-core.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/safe-core.mdx -------------------------------------------------------------------------------- /pages/home/what-is-safe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/home/what-is-safe.mdx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/addmessage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/addmessage.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/addmessagesignature.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/addmessagesignature.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/addsafedelegate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/addsafedelegate.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/addsafeoperation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/addsafeoperation.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/confirmsafeoperation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/confirmsafeoperation.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/confirmtransaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/confirmtransaction.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/constructor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/constructor.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/decodedata.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/decodedata.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/estimatesafetransaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/estimatesafetransaction.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getalltransactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getalltransactions.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getincomingtransactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getincomingtransactions.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getmessage.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getmessage.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getmessages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getmessages.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getmoduletransactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getmoduletransactions.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getmultisigtransactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getmultisigtransactions.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getnextnonce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getnextnonce.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getpendingsafeoperations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getpendingsafeoperations.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getpendingtransactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getpendingtransactions.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getsafecreationinfo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getsafecreationinfo.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getsafedelegates.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getsafedelegates.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getsafeinfo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getsafeinfo.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getsafeoperation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getsafeoperation.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getsafeoperationsbyaddress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getsafeoperationsbyaddress.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getsafesbymodule.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getsafesbymodule.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getsafesbyowner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getsafesbyowner.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/getserviceinfo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/getserviceinfo.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/gettoken.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/gettoken.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/gettokenlist.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/gettokenlist.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/gettransaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/gettransaction.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/overview.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/proposetransaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/proposetransaction.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-api-kit/removesafedelegate.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-api-kit/removesafedelegate.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-protocol-kit/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-protocol-kit/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-protocol-kit/deployment/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-protocol-kit/deployment/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-protocol-kit/messages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-protocol-kit/messages/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-protocol-kit/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-protocol-kit/overview.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-protocol-kit/passkeys/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-protocol-kit/passkeys/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-protocol-kit/safe-guards/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-protocol-kit/safe-guards/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-protocol-kit/safe-info/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-protocol-kit/safe-info/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-protocol-kit/safe-info/getnonce.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-protocol-kit/safe-info/getnonce.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-protocol-kit/safe-info/isowner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-protocol-kit/safe-info/isowner.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/createconfig.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/createconfig.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/overview.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/safeprovider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/safeprovider.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/usesafe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/usesafe.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/usesafe/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/usesafe/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/usesafe/connect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/usesafe/connect.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/usesafe/disconnect.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/usesafe/disconnect.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/usesafe/getbalance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/usesafe/getbalance.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/usesafe/getchain.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/usesafe/getchain.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/usesafe/getsafeinfo.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/usesafe/getsafeinfo.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/usesendtransaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/usesendtransaction.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/useupdateowners.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/useupdateowners.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/useupdateowners/add.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/useupdateowners/add.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-react-hooks/useupdatethreshold.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-react-hooks/useupdatethreshold.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/offchain-messages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/offchain-messages.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/onchain-messages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/onchain-messages.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/overview.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/safe-client-result.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/safe-client-result.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/safe-client/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/safe-client/_meta.json -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/safe-client/confirm.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/safe-client/confirm.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/safe-client/extend.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/safe-client/extend.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/safe-client/isowner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/safe-client/isowner.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/safe-client/send.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/safe-client/send.mdx -------------------------------------------------------------------------------- /pages/reference-sdk-starter-kit/safe-operations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-sdk-starter-kit/safe-operations.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/_meta.json -------------------------------------------------------------------------------- /pages/reference-smart-account/deployment/SafeProxy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/deployment/SafeProxy.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/deployment/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/deployment/_meta.json -------------------------------------------------------------------------------- /pages/reference-smart-account/events/AddedOwner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/events/AddedOwner.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/events/ApproveHash.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/events/ApproveHash.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/events/ChangedGuard.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/events/ChangedGuard.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/events/DisabledModule.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/events/DisabledModule.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/events/EnabledModule.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/events/EnabledModule.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/events/RemovedOwner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/events/RemovedOwner.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/events/SafeReceived.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/events/SafeReceived.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/events/SafeSetup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/events/SafeSetup.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/events/SignMsg.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/events/SignMsg.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/fallback/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/fallback/_meta.json -------------------------------------------------------------------------------- /pages/reference-smart-account/fallback/fallback.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/fallback/fallback.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/fallback/receive.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/fallback/receive.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/guards/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/guards/_meta.json -------------------------------------------------------------------------------- /pages/reference-smart-account/guards/setGuard.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/guards/setGuard.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/guards/setModuleGuard.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/guards/setModuleGuard.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/modules/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/modules/_meta.json -------------------------------------------------------------------------------- /pages/reference-smart-account/modules/disableModule.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/modules/disableModule.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/modules/enableModule.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/modules/enableModule.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/overview.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/owners/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/owners/_meta.json -------------------------------------------------------------------------------- /pages/reference-smart-account/owners/getOwners.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/owners/getOwners.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/owners/getThreshold.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/owners/getThreshold.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/owners/isOwner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/owners/isOwner.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/owners/removeOwner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/owners/removeOwner.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/owners/swapOwner.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/owners/swapOwner.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/setup/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/setup/_meta.json -------------------------------------------------------------------------------- /pages/reference-smart-account/setup/domainSeparator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/setup/domainSeparator.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/setup/setup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/setup/setup.mdx -------------------------------------------------------------------------------- /pages/reference-smart-account/signatures/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/signatures/_meta.json -------------------------------------------------------------------------------- /pages/reference-smart-account/transactions/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/transactions/_meta.json -------------------------------------------------------------------------------- /pages/reference-smart-account/utilities/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/reference-smart-account/utilities/_meta.json -------------------------------------------------------------------------------- /pages/resource-hub.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/resource-hub.mdx -------------------------------------------------------------------------------- /pages/safenet/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/_meta.json -------------------------------------------------------------------------------- /pages/safenet/architecture.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/architecture.mdx -------------------------------------------------------------------------------- /pages/safenet/chains.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/chains.mdx -------------------------------------------------------------------------------- /pages/safenet/concepts/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/concepts/_meta.json -------------------------------------------------------------------------------- /pages/safenet/concepts/attestation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/concepts/attestation.mdx -------------------------------------------------------------------------------- /pages/safenet/concepts/challenge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/concepts/challenge.mdx -------------------------------------------------------------------------------- /pages/safenet/concepts/guarantee.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/concepts/guarantee.mdx -------------------------------------------------------------------------------- /pages/safenet/concepts/resource-lock.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/concepts/resource-lock.mdx -------------------------------------------------------------------------------- /pages/safenet/concepts/settlement.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/concepts/settlement.mdx -------------------------------------------------------------------------------- /pages/safenet/concepts/universal-balance.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/concepts/universal-balance.mdx -------------------------------------------------------------------------------- /pages/safenet/core-components/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/core-components/_meta.json -------------------------------------------------------------------------------- /pages/safenet/core-components/end-user.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/core-components/end-user.mdx -------------------------------------------------------------------------------- /pages/safenet/core-components/liquidity-provider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/core-components/liquidity-provider.mdx -------------------------------------------------------------------------------- /pages/safenet/core-components/processor.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/core-components/processor.mdx -------------------------------------------------------------------------------- /pages/safenet/core-components/safenet-protocol.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/core-components/safenet-protocol.mdx -------------------------------------------------------------------------------- /pages/safenet/core-components/transaction-service.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/core-components/transaction-service.mdx -------------------------------------------------------------------------------- /pages/safenet/core-components/validator.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/core-components/validator.mdx -------------------------------------------------------------------------------- /pages/safenet/introduction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/introduction.mdx -------------------------------------------------------------------------------- /pages/safenet/optimistic-validity-proof.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/optimistic-validity-proof.mdx -------------------------------------------------------------------------------- /pages/safenet/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/overview.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/_meta.json -------------------------------------------------------------------------------- /pages/safenet/protocol/beneficiary.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/beneficiary.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/entry-point.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/entry-point.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/guarantee-engine.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/guarantee-engine.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/guarantee-implementation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/guarantee-implementation.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/guard.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/guard.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/home-safe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/home-safe.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/overview.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/relayer.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/relayer.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/safe-dao.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/safe-dao.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/settlement-engine.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/settlement-engine.mdx -------------------------------------------------------------------------------- /pages/safenet/protocol/transceiver.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/protocol/transceiver.mdx -------------------------------------------------------------------------------- /pages/safenet/safenet-account.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/safenet-account.mdx -------------------------------------------------------------------------------- /pages/safenet/safenet-transaction.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/safenet/safenet-transaction.mdx -------------------------------------------------------------------------------- /pages/sdk/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/_meta.json -------------------------------------------------------------------------------- /pages/sdk/api-kit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/api-kit.mdx -------------------------------------------------------------------------------- /pages/sdk/api-kit/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/api-kit/_meta.json -------------------------------------------------------------------------------- /pages/sdk/api-kit/guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/api-kit/guides/_meta.json -------------------------------------------------------------------------------- /pages/sdk/api-kit/guides/migrate-to-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/api-kit/guides/migrate-to-v1.md -------------------------------------------------------------------------------- /pages/sdk/api-kit/guides/migrate-to-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/api-kit/guides/migrate-to-v2.md -------------------------------------------------------------------------------- /pages/sdk/api-kit/guides/migrate-to-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/api-kit/guides/migrate-to-v3.md -------------------------------------------------------------------------------- /pages/sdk/api-kit/guides/migrate-to-v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/api-kit/guides/migrate-to-v4.md -------------------------------------------------------------------------------- /pages/sdk/onchain-tracking.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/onchain-tracking.mdx -------------------------------------------------------------------------------- /pages/sdk/onramp.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/onramp.mdx -------------------------------------------------------------------------------- /pages/sdk/onramp/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/onramp/_meta.json -------------------------------------------------------------------------------- /pages/sdk/onramp/monerium.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/onramp/monerium.mdx -------------------------------------------------------------------------------- /pages/sdk/onramp/stripe.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/onramp/stripe.mdx -------------------------------------------------------------------------------- /pages/sdk/overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/overview.mdx -------------------------------------------------------------------------------- /pages/sdk/protocol-kit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit.mdx -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/_meta.json -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/_meta.json -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/execute-transactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/execute-transactions.mdx -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/migrate-to-v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/migrate-to-v1.md -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/migrate-to-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/migrate-to-v2.md -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/migrate-to-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/migrate-to-v3.md -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/migrate-to-v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/migrate-to-v4.md -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/migrate-to-v5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/migrate-to-v5.md -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/migrate-to-v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/migrate-to-v6.md -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/safe-deployment.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/safe-deployment.mdx -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/signatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/signatures.md -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/signatures/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/signatures/_meta.json -------------------------------------------------------------------------------- /pages/sdk/protocol-kit/guides/signatures/messages.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/protocol-kit/guides/signatures/messages.mdx -------------------------------------------------------------------------------- /pages/sdk/react-hooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/react-hooks.mdx -------------------------------------------------------------------------------- /pages/sdk/react-hooks/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/react-hooks/_meta.json -------------------------------------------------------------------------------- /pages/sdk/react-hooks/guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/react-hooks/guides/_meta.json -------------------------------------------------------------------------------- /pages/sdk/react-hooks/guides/send-transactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/react-hooks/guides/send-transactions.mdx -------------------------------------------------------------------------------- /pages/sdk/relay-kit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit.mdx -------------------------------------------------------------------------------- /pages/sdk/relay-kit/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit/_meta.json -------------------------------------------------------------------------------- /pages/sdk/relay-kit/guides/4337-safe-sdk.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit/guides/4337-safe-sdk.mdx -------------------------------------------------------------------------------- /pages/sdk/relay-kit/guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit/guides/_meta.json -------------------------------------------------------------------------------- /pages/sdk/relay-kit/guides/gelato-relay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit/guides/gelato-relay.mdx -------------------------------------------------------------------------------- /pages/sdk/relay-kit/guides/migrate-to-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit/guides/migrate-to-v2.md -------------------------------------------------------------------------------- /pages/sdk/relay-kit/guides/migrate-to-v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit/guides/migrate-to-v3.md -------------------------------------------------------------------------------- /pages/sdk/relay-kit/guides/migrate-to-v4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit/guides/migrate-to-v4.md -------------------------------------------------------------------------------- /pages/sdk/relay-kit/reference/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit/reference/_meta.json -------------------------------------------------------------------------------- /pages/sdk/relay-kit/reference/safe-4337-pack.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/relay-kit/reference/safe-4337-pack.mdx -------------------------------------------------------------------------------- /pages/sdk/signers.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/signers.mdx -------------------------------------------------------------------------------- /pages/sdk/signers/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/signers/_meta.json -------------------------------------------------------------------------------- /pages/sdk/signers/dynamic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/signers/dynamic.mdx -------------------------------------------------------------------------------- /pages/sdk/signers/magic.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/signers/magic.mdx -------------------------------------------------------------------------------- /pages/sdk/signers/passkeys.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/signers/passkeys.mdx -------------------------------------------------------------------------------- /pages/sdk/signers/privy.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/signers/privy.mdx -------------------------------------------------------------------------------- /pages/sdk/signers/web3auth.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/signers/web3auth.mdx -------------------------------------------------------------------------------- /pages/sdk/starter-kit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/starter-kit.mdx -------------------------------------------------------------------------------- /pages/sdk/starter-kit/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/starter-kit/_meta.json -------------------------------------------------------------------------------- /pages/sdk/starter-kit/guides/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/starter-kit/guides/_meta.json -------------------------------------------------------------------------------- /pages/sdk/starter-kit/guides/send-transactions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/starter-kit/guides/send-transactions.mdx -------------------------------------------------------------------------------- /pages/sdk/starter-kit/guides/send-user-operations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/sdk/starter-kit/guides/send-user-operations.mdx -------------------------------------------------------------------------------- /pages/support.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pages/support.mdx -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/event-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/public/event-background.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/fonts/Citerne-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/public/fonts/Citerne-Light.woff -------------------------------------------------------------------------------- /public/llms-ctx-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/public/llms-ctx-full.txt -------------------------------------------------------------------------------- /public/llms-ctx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/public/llms-ctx.txt -------------------------------------------------------------------------------- /public/llms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/public/llms.txt -------------------------------------------------------------------------------- /public/og_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/public/og_image.png -------------------------------------------------------------------------------- /public/og_image_resource_hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/public/og_image_resource_hub.png -------------------------------------------------------------------------------- /public/unknown-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/public/unknown-logo.png -------------------------------------------------------------------------------- /redirects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/redirects.json -------------------------------------------------------------------------------- /styles/emotion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/styles/emotion.ts -------------------------------------------------------------------------------- /styles/palette.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/styles/palette.ts -------------------------------------------------------------------------------- /styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/styles/styles.css -------------------------------------------------------------------------------- /styles/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/styles/theme.ts -------------------------------------------------------------------------------- /tests/redirections.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/tests/redirections.spec.ts -------------------------------------------------------------------------------- /theme.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/theme.config.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/safe-global/safe-docs/HEAD/tsconfig.json --------------------------------------------------------------------------------