├── .github └── workflows │ └── swift.yml ├── .gitignore ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ └── today-rewards.xcscheme ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── today-rewards │ ├── bnb │ ├── api.swift │ ├── model.swift │ └── reporter.swift │ ├── coingecko │ ├── coingecko.swift │ └── simple_price.swift │ ├── constants.swift │ ├── main.swift │ ├── notification.swift │ └── string.swift └── Tests ├── LinuxMain.swift └── today-rewardsTests ├── XCTestManifests.swift └── today_rewardsTests.swift /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/today-rewards.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/today-rewards.xcscheme -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/README.md -------------------------------------------------------------------------------- /Sources/today-rewards/bnb/api.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Sources/today-rewards/bnb/api.swift -------------------------------------------------------------------------------- /Sources/today-rewards/bnb/model.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Sources/today-rewards/bnb/model.swift -------------------------------------------------------------------------------- /Sources/today-rewards/bnb/reporter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Sources/today-rewards/bnb/reporter.swift -------------------------------------------------------------------------------- /Sources/today-rewards/coingecko/coingecko.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Sources/today-rewards/coingecko/coingecko.swift -------------------------------------------------------------------------------- /Sources/today-rewards/coingecko/simple_price.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Sources/today-rewards/coingecko/simple_price.swift -------------------------------------------------------------------------------- /Sources/today-rewards/constants.swift: -------------------------------------------------------------------------------- 1 | import Foundation 2 | 3 | let defaultAddresses = ["bnb1xwalxpaes9r0z0fqdy70j3kz6aayetegur38gl"] 4 | -------------------------------------------------------------------------------- /Sources/today-rewards/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Sources/today-rewards/main.swift -------------------------------------------------------------------------------- /Sources/today-rewards/notification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Sources/today-rewards/notification.swift -------------------------------------------------------------------------------- /Sources/today-rewards/string.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Sources/today-rewards/string.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Tests/today-rewardsTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Tests/today-rewardsTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/today-rewardsTests/today_rewardsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hewigovens/today-rewards/HEAD/Tests/today-rewardsTests/today_rewardsTests.swift --------------------------------------------------------------------------------