Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oxford #2661

Closed
wants to merge 26 commits into from
Closed

Oxford #2661

Changes from 2 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
fa1e4f7
Merge branch 'master' of github.com:ecadlabs/taquito into oxford
hui-an-yang Aug 31, 2023
b690bb3
Add configuration for running integration tests against Oxfordnet (#2…
danielelisi Sep 2, 2023
7eeb190
Merge branch 'master' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 5, 2023
ea0ec29
Merge branch 'oxford' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 5, 2023
58df70f
2594 oxford protocol constants update (#2637)
hui-an-yang Sep 6, 2023
1ef8dad
Merge branch 'oxford' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 6, 2023
28e0671
chore: configured pr run with flextesa oxford (#2640)
hui-an-yang Sep 8, 2023
b0f584b
Merge branch 'oxford' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 13, 2023
1cdaf6a
2596 oxfrod rpc returned type update (#2652)
hui-an-yang Sep 18, 2023
36a4394
2648 oxford estimation update (#2659)
hui-an-yang Sep 18, 2023
59def8f
2646 remove set deposits limit op reference (#2655)
hui-an-yang Sep 18, 2023
fc2a6e1
Merge branch 'oxford' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 20, 2023
204be7e
Merge branch 'master' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 20, 2023
d631b4e
2597 oxford remove get origination proof (#2664)
hui-an-yang Sep 22, 2023
db072a2
Merge branch 'oxford' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 22, 2023
dda9fe0
2599 oxford supports attestation (#2666)
hui-an-yang Sep 26, 2023
d63470f
Merge branch 'oxford' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 26, 2023
b10c2a1
refactor: getting taquito oxford ready (#2667)
hui-an-yang Sep 27, 2023
1253770
test: added timelock in localForger testcase (#2670)
hui-an-yang Sep 27, 2023
d410ab9
Merge branch 'oxford' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 27, 2023
a0f22c3
removed remaining tx_rollup references (#2675)
dsawali Sep 29, 2023
47ea59a
Merge branch 'oxford' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 29, 2023
14788dd
test: fixing oxfordbox failing_noop tests (#2681)
hui-an-yang Sep 29, 2023
5779b73
Merge branch 'oxford' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 29, 2023
21f25a0
Merge branch 'master' of github.com:ecadlabs/taquito into oxford
hui-an-yang Sep 29, 2023
998e588
chore(releng) bump version to 18.0.0-RC.0
hui-an-yang Sep 29, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 13 additions & 9 deletions integration-tests/contract-failing-noop.spec.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
import { InMemorySigner } from "@taquito/signer";
import { CONFIGS, defaultSecretKey } from "./config";
import { CONFIGS, defaultSecretKey, isSandbox } from "./config";
import { OpKind, TezosToolkit } from "@taquito/taquito";
import { verifySignature } from "@taquito/utils";

CONFIGS().forEach(({ setup }) => {
let rpc = 'https://mainnet-archive.ecadinfra.com/'
const Tezos = new TezosToolkit(rpc);
Tezos.setSignerProvider(new InMemorySigner(defaultSecretKey.secret_key));
CONFIGS().forEach(({ setup, rpc, lib }) => {
const testnet = isSandbox({ rpc }) ? it.skip : it;
let Tezos: TezosToolkit
let signer = new InMemorySigner(defaultSecretKey.secret_key)

describe(`Test failing_noop through contract api, based on head, and secret_key using: ${rpc}`, () => {
beforeEach(async (done) => {
describe(`Test failing_noop through contract api, based on head, and secret_key`, () => {
beforeAll(async (done) => {
await setup();
Tezos = new TezosToolkit('https://mainnet-archive.ecadinfra.com/');
Tezos.setSignerProvider(signer);
done();
});

it('Verify that the contract.failingNoop result is as expected when the block and secret key are kept constant', async (done) => {
testnet('Verify that the contract.failingNoop result is as expected when the block and secret key are kept constant', async (done) => {
const signed = await Tezos.contract.failingNoop({
arbitrary: "48656C6C6F20576F726C64", // Hello World
basedOnBlock: 0,
@@ -36,8 +38,10 @@ CONFIGS().forEach(({ setup }) => {
});

describe(`Test failing_noop through contract api using: ${rpc}`, () => {
beforeEach(async (done) => {
beforeAll(async (done) => {
await setup();
Tezos = lib
Tezos.setSignerProvider(signer);
done();
});

22 changes: 13 additions & 9 deletions integration-tests/wallet-failing-noop.spec.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
import { InMemorySigner } from "@taquito/signer";
import { CONFIGS, defaultSecretKey } from "./config";
import { CONFIGS, defaultSecretKey, isSandbox } from "./config";
import { OpKind, TezosToolkit } from "@taquito/taquito";
import { verifySignature } from "@taquito/utils";

CONFIGS().forEach(({ setup }) => {
let rpc = 'https://mainnet-archive.ecadinfra.com/'
const Tezos = new TezosToolkit(rpc);
Tezos.setSignerProvider(new InMemorySigner(defaultSecretKey.secret_key));
CONFIGS().forEach(({ setup, rpc, lib }) => {
const testnet = isSandbox({ rpc }) ? it.skip : it;
let Tezos: TezosToolkit
let signer = new InMemorySigner(defaultSecretKey.secret_key)

describe(`Test failing_noop through wallet api, based on head, and secret_key using: ${rpc}`, () => {
beforeEach(async (done) => {
describe(`Test failing_noop through wallet api, based on head, and secret_key`, () => {
beforeAll(async (done) => {
await setup();
Tezos = new TezosToolkit('https://mainnet-archive.ecadinfra.com/');
Tezos.setSignerProvider(signer);
done();
});

it('Verify that the wallet.signFailingNoop result is as expected when the block and private key are kept constant', async done => {
testnet('Verify that the wallet.signFailingNoop result is as expected when the block and private key are kept constant', async done => {
const signed = await Tezos.wallet.signFailingNoop({
arbitrary: "48656C6C6F20576F726C64", // Hello World
basedOnBlock: 0,
@@ -37,8 +39,10 @@ CONFIGS().forEach(({ setup }) => {
});

describe(`Test failing_noop through wallet api using: ${rpc}`, () => {
beforeEach(async (done) => {
beforeAll(async (done) => {
await setup();
Tezos = lib;
Tezos.setSignerProvider(signer);
done();
});