Skip to content

Commit 8091c12

Browse files
committed
Updated Wallet, Withdrawal Transaction Reference and CreateVirtualParams CNGNManager
1 parent fce9feb commit 8091c12

21 files changed

+438
-0
lines changed
29.3 KB
Binary file not shown.
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-----BEGIN PGP SIGNATURE-----
2+
3+
iHUEABYKAB0WIQSc4daFnkmf9E9Uqe6lO+zA7eK2uwUCZ5E9CgAKCRClO+zA7eK2
4+
uxcnAP4162XZAUfTr8sR0fTWPNhduqX/i0hVZxamfiZZl+zn4gEAmMpfGv3S1mY3
5+
n6oiG3vvTVmmHb1fXq716luBq0BtEQ0=
6+
=S6BH
7+
-----END PGP SIGNATURE-----
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
e1b9f8a244d53de85b2862652437c48c
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1747a1e842d3aa77a346a53c8bc7498056e01e88
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0b386cb7af79e2aeaca1676b0952e3f24a6c1dd944fd2e89c87622a9b36bc8e6
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9f62bdb6ae1abe0b45fc9eaa6922f5e792d127f0bca8eee09b253624296da8df949539a0f70816d6214837f2ae68292ab97135e567c60c74c838d6a5e84b7901
Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<!-- Project Coordinates -->
8+
<groupId>io.github.wrappedcbdc-cngn</groupId>
9+
<artifactId>cngn-java-library</artifactId>
10+
<version>1.0.4</version>
11+
<packaging>jar</packaging>
12+
13+
<!-- Metadata -->
14+
<name>cngn-java-library</name>
15+
<description>cngn-java-library is a Java library for interacting with the cNGN API</description>
16+
<url>https://github.com/wrappedcbdc/cngn-java-library</url>
17+
18+
<!-- Properties -->
19+
<properties>
20+
<maven.compiler.source>20</maven.compiler.source>
21+
<maven.compiler.target>20</maven.compiler.target>
22+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
23+
</properties>
24+
25+
<!-- Licensing -->
26+
<licenses>
27+
<license>
28+
<name>Apache License, Version 2.0</name>
29+
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
30+
<distribution>repo</distribution>
31+
</license>
32+
</licenses>
33+
34+
<!-- Developers -->
35+
<developers>
36+
<developer>
37+
<id>wrappedcbdc</id>
38+
<name>wrappedcbdc</name>
39+
<email>[email protected]</email>
40+
</developer>
41+
</developers>
42+
43+
<!-- Source Control Management -->
44+
<scm>
45+
<connection>scm:git:git://github.com/wrappedcbdc/cngn-java-library.git</connection>
46+
<developerConnection>scm:git:ssh://[email protected]:wrappedcbdc/cngn-java-library.git</developerConnection>
47+
<url>https://github.com/wrappedcbdc/cngn-java-library</url>
48+
</scm>
49+
50+
<!-- Build Configuration -->
51+
<build>
52+
<plugins>
53+
<!-- Compiler Plugin -->
54+
<plugin>
55+
<groupId>org.apache.maven.plugins</groupId>
56+
<artifactId>maven-compiler-plugin</artifactId>
57+
<version>3.8.1</version>
58+
<configuration>
59+
<source>20</source>
60+
<target>20</target>
61+
</configuration>
62+
</plugin>
63+
64+
<!-- Source Plugin (Generates Source JAR) -->
65+
<plugin>
66+
<groupId>org.apache.maven.plugins</groupId>
67+
<artifactId>maven-source-plugin</artifactId>
68+
<version>3.2.1</version>
69+
<executions>
70+
<execution>
71+
<goals>
72+
<goal>jar</goal>
73+
</goals>
74+
</execution>
75+
</executions>
76+
</plugin>
77+
78+
<!-- Javadoc Plugin (Generates Javadoc JAR) -->
79+
<plugin>
80+
<groupId>org.apache.maven.plugins</groupId>
81+
<artifactId>maven-javadoc-plugin</artifactId>
82+
<version>3.1.0</version>
83+
<executions>
84+
<execution>
85+
<goals>
86+
<goal>jar</goal>
87+
</goals>
88+
</execution>
89+
</executions>
90+
</plugin>
91+
92+
<!-- Central Publishing Plugin -->
93+
<plugin>
94+
<groupId>org.sonatype.central</groupId>
95+
<artifactId>central-publishing-maven-plugin</artifactId>
96+
<version>0.6.0</version>
97+
<extensions>true</extensions>
98+
<configuration>
99+
<publishingServerId>central</publishingServerId>
100+
</configuration>
101+
</plugin>
102+
103+
<!-- GPG Plugin -->
104+
<plugin>
105+
<groupId>org.apache.maven.plugins</groupId>
106+
<artifactId>maven-gpg-plugin</artifactId>
107+
<version>3.1.0</version>
108+
<executions>
109+
<execution>
110+
<id>sign-artifacts</id>
111+
<phase>verify</phase>
112+
<goals>
113+
<goal>sign</goal>
114+
</goals>
115+
</execution>
116+
</executions>
117+
<configuration>
118+
<defaultKeyring>true</defaultKeyring>
119+
</configuration>
120+
</plugin>
121+
</plugins>
122+
</build>
123+
124+
<distributionManagement>
125+
<repository>
126+
<id>central</id>
127+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
128+
</repository>
129+
<snapshotRepository>
130+
<id>central</id>
131+
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
132+
</snapshotRepository>
133+
</distributionManagement>
134+
</project>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
-----BEGIN PGP SIGNATURE-----
2+
3+
iHUEABYKAB0WIQSc4daFnkmf9E9Uqe6lO+zA7eK2uwUCZ5E9EAAKCRClO+zA7eK2
4+
u7wzAP4oifbRYEF5JbLDPbXaN5Pb3Tfi1foxZH1CstMFv8GgcgEA1yHzNa0JlUwS
5+
2fA+GMw0jNheFxNTlFGdJRmE0Zpn0Qw=
6+
=pp4X
7+
-----END PGP SIGNATURE-----
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
67b0446c8ffa79be6ec88412e43e6c58

0 commit comments

Comments
 (0)