-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from bianjieai/mh/v3
V3 版本
- Loading branch information
Showing
147 changed files
with
4,913 additions
and
1,753 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package ai.bianjie.avatasdk; | ||
|
||
import ai.bianjie.avatasdk.proxy.evm.contract.impl.Contract; | ||
import ai.bianjie.avatasdk.proxy.evm.nft.impl.Nft; | ||
import ai.bianjie.avatasdk.proxy.evm.ns.impl.Ns; | ||
import ai.bianjie.avatasdk.proxy.evm.tx.impl.Tx; | ||
import ai.bianjie.avatasdk.util.HttpClient; | ||
|
||
public class Evm { | ||
|
||
public Nft nft; | ||
public Tx tx; | ||
public Contract contract; | ||
public Ns ns; | ||
|
||
/** | ||
* SDK initialization method | ||
*/ | ||
public Evm(HttpClient httpClient) { | ||
this.nft = new Nft(httpClient); | ||
this.tx = new Tx(httpClient); | ||
this.contract = new Contract(httpClient); | ||
this.ns = new Ns(httpClient); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package ai.bianjie.avatasdk; | ||
|
||
import ai.bianjie.avatasdk.proxy.nat.mt.impl.Mt; | ||
import ai.bianjie.avatasdk.proxy.nat.nft.impl.Nft; | ||
import ai.bianjie.avatasdk.proxy.nat.records.impl.Records; | ||
import ai.bianjie.avatasdk.proxy.nat.tx.impl.Tx; | ||
import ai.bianjie.avatasdk.util.HttpClient; | ||
|
||
public class Native { | ||
|
||
public Nft nft; | ||
public Mt mt; | ||
public Records records; | ||
public Tx tx; | ||
|
||
/** | ||
* SDK initialization method | ||
*/ | ||
public Native(HttpClient httpClient) { | ||
this.nft = new Nft(httpClient); | ||
this.mt = new Mt(httpClient); | ||
this.records = new Records(httpClient); | ||
this.tx = new Tx(httpClient); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.