Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feat/testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Foivos committed Jul 9, 2024
2 parents 24c1dd3 + 5788ac4 commit 3413c71
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 20 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,6 @@ target/
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# dist
# dist and move_compile
dist
move_comile
19 changes: 0 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions test/test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
require('dotenv').config();
const { TxBuilder } = require('../dist/tx-builder');
const { SuiClient, getFullnodeUrl } = require('@mysten/sui.js/client');

describe('test', () => {
let client, keypair;
before(async() => {
client = new SuiClient(getFullnodeUrl('localnet'));
keypair = new SuiKeypair();
const builder = new TxBuilder(client);

const response = await builder.signAndExecute(keypair);
})
it('test', async () => {

});
});

0 comments on commit 3413c71

Please sign in to comment.