├── .github ├── actions │ ├── build-for-testing │ │ └── action.yml │ ├── install-dependencies │ │ └── action.yml │ └── test-without-building │ │ └── action.yml └── workflows │ └── build-frameworks.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CLibWally └── module.modulemap ├── DemoPlayground.playground ├── Contents.swift └── contents.xcplayground ├── FUNDING.yml ├── LICENSE.md ├── LibWally.podspec ├── LibWally.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ │ ├── LibWally.xcscheme │ │ └── LibWallyCore.xcscheme └── xcuserdata │ └── bitcoin.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── LibWally ├── Address.swift ├── BIP32.swift ├── BIP39.swift ├── DataExtension.swift ├── Descriptor.swift ├── Info.plist ├── LibWally.h ├── LibWally.modulemap ├── PSBT.swift ├── Script.swift └── Transaction.swift ├── LibWallyTests ├── AddressTests.swift ├── BIP32Tests.swift ├── BIP39Tests.swift ├── DataExtensionTests.swift ├── DescriptorTests.swift ├── Info.plist ├── PSBTTests.swift ├── ScriptTests.swift └── TransactionTests.swift └── README.md /.github/actions/build-for-testing/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/.github/actions/build-for-testing/action.yml -------------------------------------------------------------------------------- /.github/actions/install-dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/.github/actions/install-dependencies/action.yml -------------------------------------------------------------------------------- /.github/actions/test-without-building/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/.github/actions/test-without-building/action.yml -------------------------------------------------------------------------------- /.github/workflows/build-frameworks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/.github/workflows/build-frameworks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/.travis.yml -------------------------------------------------------------------------------- /CLibWally/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/CLibWally/module.modulemap -------------------------------------------------------------------------------- /DemoPlayground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/DemoPlayground.playground/Contents.swift -------------------------------------------------------------------------------- /DemoPlayground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/DemoPlayground.playground/contents.xcplayground -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Sjors] 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LibWally.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally.podspec -------------------------------------------------------------------------------- /LibWally.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LibWally.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LibWally.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LibWally.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally.xcodeproj/xcshareddata/IDETemplateMacros.plist -------------------------------------------------------------------------------- /LibWally.xcodeproj/xcshareddata/xcschemes/LibWally.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally.xcodeproj/xcshareddata/xcschemes/LibWally.xcscheme -------------------------------------------------------------------------------- /LibWally.xcodeproj/xcshareddata/xcschemes/LibWallyCore.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally.xcodeproj/xcshareddata/xcschemes/LibWallyCore.xcscheme -------------------------------------------------------------------------------- /LibWally.xcodeproj/xcuserdata/bitcoin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally.xcodeproj/xcuserdata/bitcoin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LibWally/Address.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/Address.swift -------------------------------------------------------------------------------- /LibWally/BIP32.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/BIP32.swift -------------------------------------------------------------------------------- /LibWally/BIP39.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/BIP39.swift -------------------------------------------------------------------------------- /LibWally/DataExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/DataExtension.swift -------------------------------------------------------------------------------- /LibWally/Descriptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/Descriptor.swift -------------------------------------------------------------------------------- /LibWally/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/Info.plist -------------------------------------------------------------------------------- /LibWally/LibWally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/LibWally.h -------------------------------------------------------------------------------- /LibWally/LibWally.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/LibWally.modulemap -------------------------------------------------------------------------------- /LibWally/PSBT.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/PSBT.swift -------------------------------------------------------------------------------- /LibWally/Script.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/Script.swift -------------------------------------------------------------------------------- /LibWally/Transaction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWally/Transaction.swift -------------------------------------------------------------------------------- /LibWallyTests/AddressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWallyTests/AddressTests.swift -------------------------------------------------------------------------------- /LibWallyTests/BIP32Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWallyTests/BIP32Tests.swift -------------------------------------------------------------------------------- /LibWallyTests/BIP39Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWallyTests/BIP39Tests.swift -------------------------------------------------------------------------------- /LibWallyTests/DataExtensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWallyTests/DataExtensionTests.swift -------------------------------------------------------------------------------- /LibWallyTests/DescriptorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWallyTests/DescriptorTests.swift -------------------------------------------------------------------------------- /LibWallyTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWallyTests/Info.plist -------------------------------------------------------------------------------- /LibWallyTests/PSBTTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWallyTests/PSBTTests.swift -------------------------------------------------------------------------------- /LibWallyTests/ScriptTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWallyTests/ScriptTests.swift -------------------------------------------------------------------------------- /LibWallyTests/TransactionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/LibWallyTests/TransactionTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sjors/libwally-swift/HEAD/README.md --------------------------------------------------------------------------------