Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Romulo-Meirelles authored Nov 18, 2022
1 parent c04018a commit c2e82d9
Show file tree
Hide file tree
Showing 83 changed files with 83,836 additions and 0 deletions.
25 changes: 25 additions & 0 deletions BitnuvemAPI.Framework/APIConfig.vb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Namespace Bitnuvem
''' <summary>
''' *** MADE FOR GITHUB ***
''' WRITTEN BY ROMULO MEIRELLES.
''' UPWORK: https://www.upwork.com/freelancers/~01fcbc5039ac5766b4
''' CONTACT WHATSAPP: https://wa.me/message/KWIS3BYO6K24N1
''' CONTACT TELEGRAM: https://t.me/Romulo_Meirelles
''' GITHUB: https://github.com/Romulo-Meirelles
''' DISCORD: đąяķňέs§¢øďε#2786
''' </summary>
''' <remarks></remarks>
'''
Public Class ApiConfig
Public Property ApiKey As String
Public Property SecretKey As String
Public Property BaseUrlTRADEAPI As String = "https://bitnuvem.com/tapi/"
Public Property BaseUrlAPI As String = "https://bitnuvem.com/api/BTC/"
Public Property BaseUrlWS As String = "https://bitnuvem.com/ws/"
Public Property SendInterceptors As IEnumerable(Of IBalanceInterceptor) = Array.Empty(Of IBalanceInterceptor)()
Public Sub Check()
If String.IsNullOrEmpty(ApiKey) Then Throw New ArgumentException("The API key is missing.", NameOf(ApiConfig.ApiKey))
End Sub
End Class
End Namespace
Binary file added BitnuvemAPI.Framework/Bitnuvem.ico
Binary file not shown.
157 changes: 157 additions & 0 deletions BitnuvemAPI.Framework/BitnuvemAPI.Framework.vbproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{5C104EE9-D5DB-4861-B048-A5303134D179}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>BitnuvemAPI</RootNamespace>
<AssemblyName>BitnuvemAPI</AssemblyName>
<FileAlignment>512</FileAlignment>
<MyType>Windows</MyType>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<DefineDebug>true</DefineDebug>
<DefineTrace>true</DefineTrace>
<OutputPath>bin\Debug\</OutputPath>
<DocumentationFile>BitnuvemAPI.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<DefineDebug>false</DefineDebug>
<DefineTrace>true</DefineTrace>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DocumentationFile>BitnuvemAPI.xml</DocumentationFile>
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
</PropertyGroup>
<PropertyGroup>
<OptionExplicit>On</OptionExplicit>
</PropertyGroup>
<PropertyGroup>
<OptionCompare>Binary</OptionCompare>
</PropertyGroup>
<PropertyGroup>
<OptionStrict>Off</OptionStrict>
</PropertyGroup>
<PropertyGroup>
<OptionInfer>On</OptionInfer>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<PropertyGroup>
<ApplicationIcon>Bitnuvem.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Import Include="Microsoft.VisualBasic" />
<Import Include="System" />
<Import Include="System.Collections" />
<Import Include="System.Collections.Generic" />
<Import Include="System.Data" />
<Import Include="System.Diagnostics" />
<Import Include="System.Linq" />
<Import Include="System.Xml.Linq" />
<Import Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<Compile Include="APIConfig.vb" />
<Compile Include="BitnuvemClient.vb" />
<Compile Include="BitnuvemException.vb" />
<Compile Include="HMACSHA256\HMACSHA256.vb" />
<Compile Include="HTTP\HttpClientRequester.vb" />
<Compile Include="HTTP\IRequester.vb" />
<Compile Include="HTTP\RequesterBase.vb" />
<Compile Include="IBitnuvemClient.vb" />
<Compile Include="INTERCEPTORS\IBalanceInterceptor.vb" />
<Compile Include="INTERCEPTORS\InterceptorFailException.vb" />
<Compile Include="INTERCEPTORS\InterceptorResult.vb" />
<Compile Include="INTERCEPTORS\LimitSendInterceptor.vb" />
<Compile Include="INTERCEPTORS\SendInterceptorExtensions.vb" />
<Compile Include="InvalidCryptocurrencyAddressException.vb" />
<Compile Include="MODELS\API\Cotacao.vb" />
<Compile Include="MODELS\API\Fee.vb" />
<Compile Include="MODELS\API\OrderBook.vb" />
<Compile Include="MODELS\API\Ticker.vb" />
<Compile Include="MODELS\API\TradeAdvanced.vb" />
<Compile Include="MODELS\API\Trades.vb" />
<Compile Include="MODELS\BitnuvemResponse.vb" />
<Compile Include="MODELS\TRADE_API\Account_Bank_List.vb" />
<Compile Include="MODELS\TRADE_API\BalanceResponse.vb" />
<Compile Include="MODELS\TRADE_API\Order_Cancel.vb" />
<Compile Include="MODELS\TRADE_API\Order_Get.vb" />
<Compile Include="MODELS\TRADE_API\Order_List.vb" />
<Compile Include="MODELS\TRADE_API\Order_New_Limite.vb" />
<Compile Include="MODELS\TRADE_API\Send.vb" />
<Compile Include="MODELS\TRADE_API\Withdraw.vb" />
<Compile Include="My Project\AssemblyInfo.vb" />
<Compile Include="My Project\Application.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Application.myapp</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<Compile Include="My Project\Resources.Designer.vb">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="My Project\Settings.Designer.vb">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<Compile Include="RequestBalance.vb" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="My Project\Resources.resx">
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
<CustomToolNamespace>My.Resources</CustomToolNamespace>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="My Project\Application.myapp">
<Generator>MyApplicationCodeGenerator</Generator>
<LastGenOutput>Application.Designer.vb</LastGenOutput>
</None>
<None Include="My Project\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<CustomToolNamespace>My</CustomToolNamespace>
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
</None>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Content Include="Bitnuvem.ico" />
<Content Include="logo-h-color.png" />
<Content Include="Resources\Bitnuvem.ico" />
<Content Include="Sem Título-1.png" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
</Project>
Loading

0 comments on commit c2e82d9

Please sign in to comment.