├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── bindings ├── CompatibilityFallbackHandler │ └── CompatibilityFallbackHandler.go ├── Safe │ └── Safe.go ├── SafeL2 │ └── SafeL2.go ├── SafeProxy │ └── SafeProxy.go └── SafeProxyFactory │ └── SafeProxyFactory.go ├── cmd.go ├── delegate.go ├── delegateOperations.go ├── go.mod ├── go.sum ├── main.go └── viem-snippet ├── .env.example ├── .gitignore ├── abis ├── fallbackHandlerAbi.ts ├── proxyFactoryAbi.ts └── safeAbi.ts ├── mainnet.ts ├── package-lock.json ├── package.json ├── testnet.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/README.md -------------------------------------------------------------------------------- /bindings/CompatibilityFallbackHandler/CompatibilityFallbackHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/bindings/CompatibilityFallbackHandler/CompatibilityFallbackHandler.go -------------------------------------------------------------------------------- /bindings/Safe/Safe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/bindings/Safe/Safe.go -------------------------------------------------------------------------------- /bindings/SafeL2/SafeL2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/bindings/SafeL2/SafeL2.go -------------------------------------------------------------------------------- /bindings/SafeProxy/SafeProxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/bindings/SafeProxy/SafeProxy.go -------------------------------------------------------------------------------- /bindings/SafeProxyFactory/SafeProxyFactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/bindings/SafeProxyFactory/SafeProxyFactory.go -------------------------------------------------------------------------------- /cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/cmd.go -------------------------------------------------------------------------------- /delegate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/delegate.go -------------------------------------------------------------------------------- /delegateOperations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/delegateOperations.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/main.go -------------------------------------------------------------------------------- /viem-snippet/.env.example: -------------------------------------------------------------------------------- 1 | PRIVATE_KEY=0x -------------------------------------------------------------------------------- /viem-snippet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/viem-snippet/.gitignore -------------------------------------------------------------------------------- /viem-snippet/abis/fallbackHandlerAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/viem-snippet/abis/fallbackHandlerAbi.ts -------------------------------------------------------------------------------- /viem-snippet/abis/proxyFactoryAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/viem-snippet/abis/proxyFactoryAbi.ts -------------------------------------------------------------------------------- /viem-snippet/abis/safeAbi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/viem-snippet/abis/safeAbi.ts -------------------------------------------------------------------------------- /viem-snippet/mainnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/viem-snippet/mainnet.ts -------------------------------------------------------------------------------- /viem-snippet/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/viem-snippet/package-lock.json -------------------------------------------------------------------------------- /viem-snippet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/viem-snippet/package.json -------------------------------------------------------------------------------- /viem-snippet/testnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/viem-snippet/testnet.ts -------------------------------------------------------------------------------- /viem-snippet/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/G7DAO/safes/HEAD/viem-snippet/tsconfig.json --------------------------------------------------------------------------------